iso command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
iso: command not found
or when using sudo you get the following error message
sudo: iso: command not found
Solutions to iso: command not found
How To Fix iso: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu iso is provided by fonty-rg package.
fonty-rg is:
fonty-rg contains fonts for linux console, including fonts for ISO-8859-1,2,3,4,5,6,7,8,9,10,11,13,14,15,16, KOI8-R,U,C, CP1250, CP1251, CP1252 codepages, as well as two Unicode fonts with wide coverage, and an ISO-8859-16 ACM file.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fonty-rg
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fonty-rg.
sudo apt -y install fonty-rg
Or if you have aptitude installed you can use the following command.
sudo aptitude install fonty-rg
Summary
In this tutorial we learn how to fix iso command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.