icmstart command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
icmstart: command not found
or when using sudo you get the following error message
sudo: icmstart: command not found
Solutions to icmstart: command not found
How To Fix icmstart: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu icmstart is provided by icmake package.
icmake is:
Icmake is a hybrid between a ‘make’ utility and a ‘shell script’ language. Originally, it was written to provide a useful tool for automatic program maintenance and system administrative tasks on MS-DOS platforms.
To fix this problem, we can install more using the command below.
sudo apt-get -y install icmake
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install icmake.
sudo apt -y install icmake
Or if you have aptitude installed you can use the following command.
sudo aptitude install icmake
Summary
In this tutorial we learn how to fix icmstart command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.