eot2ttf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
eot2ttf: command not found
or when using sudo you get the following error message
sudo: eot2ttf: command not found
Solutions to eot2ttf: command not found
How To Fix eot2ttf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu eot2ttf is provided by eot2ttf package.
eot2ttf is:
Libeot is a library for parsing Embedded OpenType files and converting them to other formats
This package contains eot2ttf - which uses libeot to convert .eot to .ttf.
To fix this problem, we can install more using the command below.
sudo apt-get -y install eot2ttf
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install eot2ttf.
sudo apt -y install eot2ttf
Or if you have aptitude installed you can use the following command.
sudo aptitude install eot2ttf
Summary
In this tutorial we learn how to fix eot2ttf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.