otf2bdf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
otf2bdf: command not found
or when using sudo you get the following error message
sudo: otf2bdf: command not found
Solutions to otf2bdf: command not found
How To Fix otf2bdf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu otf2bdf is provided by otf2bdf package.
otf2bdf is:
otf2bdf is a command line utility that uses the FreeType 2 font rendering library to generate BDF bitmap fonts from OpenType outline fonts at different sizes and resolutions.
To fix this problem, we can install more using the command below.
sudo apt-get -y install otf2bdf
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install otf2bdf.
sudo apt -y install otf2bdf
Or if you have aptitude installed you can use the following command.
sudo aptitude install otf2bdf
Summary
In this tutorial we learn how to fix otf2bdf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.