linkicc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
linkicc: command not found
or when using sudo you get the following error message
sudo: linkicc: command not found
Solutions to linkicc: command not found
How To Fix linkicc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu linkicc is provided by liblcms2-utils package.
liblcms2-utils is:
LittleCMS 2 intends to be a small-footprint color management engine, with special focus on accuracy and performance. It uses the International Color Consortium standard (ICC) of color management. LittleCMS 2 is a full implementation of ICC specification 4.2 plus all addendums. It fully supports all V2 and V4 profiles, including abstract, devicelink and named color profiles.
This package contains additional utilities (jpegicc, linkicc, psicc, tificc and transicc).
To fix this problem, we can install more using the command below.
sudo apt-get -y install liblcms2-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install liblcms2-utils.
sudo apt -y install liblcms2-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install liblcms2-utils
Summary
In this tutorial we learn how to fix linkicc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.