mkeot command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mkeot: command not found
or when using sudo you get the following error message
sudo: mkeot: command not found
Solutions to mkeot: command not found
How To Fix mkeot: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mkeot is provided by eot-utils package.
eot-utils is:
The eot-utils are the two programs mkeot and eotinfo. The former creates an EOT (Embedded OpenType) file from an OpenType or TrueType font and the URLs of one or more Web pages. mkeot respects the TrueType embedding bits. The eotinfo program displays the contents of an EOT header in a human-readable way.
To fix this problem, we can install more using the command below.
sudo apt-get -y install eot-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install eot-utils.
sudo apt -y install eot-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install eot-utils
Summary
In this tutorial we learn how to fix mkeot command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.