cd-convert command not found

In this troubleshooting guide we learn how to fix cd-convert command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

cd-convert: command not found

or when using sudo you get the following error message

sudo: cd-convert: command not found

Solutions to cd-convert: command not found

How To Fix cd-convert: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu cd-convert is provided by colord-gtk-utils package.

colord-gtk-utils is:

This package contains graphical utilities for interacting with colord, including:

  • cd-convert: A tool for converting a pair of .ti3 files to a .ccmx file, or generating a .ti3 device sample file from a .ti1 target file.

To fix this problem, we can install more using the command below.

sudo apt-get -y install colord-gtk-utils

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install colord-gtk-utils.

sudo apt -y install colord-gtk-utils

Or if you have aptitude installed you can use the following command.

sudo aptitude install colord-gtk-utils

Summary

In this tutorial we learn how to fix cd-convert command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.