isoquery command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
isoquery: command not found
or when using sudo you get the following error message
sudo: isoquery: command not found
Solutions to isoquery: command not found
How To Fix isoquery: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu isoquery is provided by isoquery package.
isoquery is:
This program can be used to generate a tabular output of the ISO standard codes provided by the package iso-codes.
It parses the JSON files and shows all included ISO codes or just matching entries, if specified on the command line.
Moreover, it’s possible to get all available translations for the ISO standard.
To fix this problem, we can install more using the command below.
sudo apt-get -y install isoquery
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install isoquery.
sudo apt -y install isoquery
Or if you have aptitude installed you can use the following command.
sudo aptitude install isoquery
Summary
In this tutorial we learn how to fix isoquery command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.