icom command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
icom: command not found
or when using sudo you get the following error message
sudo: icom: command not found
Solutions to icom: command not found
How To Fix icom: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu icom is provided by icom package.
icom is:
This program allows you to control many types of ICOM radio (transceivers and receivers) from the serial port on your computer. You need a CI-V interface circuit to connect the radio to the computer (to convert between RS-232 and TTL), which can be easily found on the web.
To fix this problem, we can install more using the command below.
sudo apt-get -y install icom
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install icom.
sudo apt -y install icom
Or if you have aptitude installed you can use the following command.
sudo aptitude install icom
Summary
In this tutorial we learn how to fix icom command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.