How To Install unifont on Kali Linux
Introduction
In this tutorial we learn how to install unifont on Kali Linux.
What is unifont
unifont is:
This package is a convenient way to install the PCF bitmap version, PSF bitmap version, and the scalable TrueType outline version of “Unifont” (intended for general-purpose use) and “Unifont Sample” (which contains combining circles to use for illustration purposes). It also installs a copy of unifont.hex and related files in /usr/share/unifont.
GNU Unifont was designed to render something besides an empty box for each visible Unicode character in the Basic Multilingual Plane (BMP, or Plane 0). The BMP contains most of the world’s modern writing scripts. This font looks best at 12pt.
Complex fonts (such as Indic or Semitic scripts, where letters change shape depending on their position in a word, or such as Mongolian, which can be written vertically) will not render perfectly. The philosophy behind this font, though, is that anything meaningful is better than an empty box for an unknown glyph.
There are three methods to install unifont on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install unifont Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install unifont using apt-get by running the following command:
sudo apt-get -y install unifontInstall unifont Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install unifont using apt by running the following command:
sudo apt -y install unifontInstall unifont Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install unifont using aptitude by running the following command:
sudo aptitude -y install unifontHow To Uninstall unifont on Kali Linux
To uninstall only the unifont package we can use the following command:
sudo apt-get remove unifontUninstall unifont And Its Dependencies
To uninstall unifont and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove unifontRemove unifont Configurations and Data
To remove unifont configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge unifontRemove unifont configuration, data, and all of its dependencies
We can use the following command to remove unifont configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge unifontDependencies
unifont have the following dependencies:
References
Summary
In this tutorial we learn how to install unifont package on Kali Linux using different package management tools: apt, apt-get and aptitude.