How To Install fonts-dejavu on Kali Linux
Introduction
In this tutorial we learn how to install fonts-dejavu on Kali Linux.
What is fonts-dejavu
fonts-dejavu is:
DejaVu provides an expanded version of the Vera font family aiming for quality and broader Unicode coverage while retaining the original Vera style. DejaVu currently works towards conformance with the Multilingual European Standards (MES-1 and MES-2) for Unicode coverage. The DejaVu fonts provide serif, sans and monospaced variants.
Use this package if you want all DejaVu variants.
DejaVu fonts are intended for use on low-resolution devices (mainly computer screens) but can be used in printing as well.
There are three methods to install fonts-dejavu 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 fonts-dejavu Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install fonts-dejavu using apt-get by running the following command:
sudo apt-get -y install fonts-dejavuInstall fonts-dejavu Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install fonts-dejavu using apt by running the following command:
sudo apt -y install fonts-dejavuInstall fonts-dejavu 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 fonts-dejavu using aptitude by running the following command:
sudo aptitude -y install fonts-dejavuHow To Uninstall fonts-dejavu on Kali Linux
To uninstall only the fonts-dejavu package we can use the following command:
sudo apt-get remove fonts-dejavuUninstall fonts-dejavu And Its Dependencies
To uninstall fonts-dejavu and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove fonts-dejavuRemove fonts-dejavu Configurations and Data
To remove fonts-dejavu configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge fonts-dejavuRemove fonts-dejavu configuration, data, and all of its dependencies
We can use the following command to remove fonts-dejavu configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fonts-dejavuDependencies
fonts-dejavu have the following dependencies:
References
Summary
In this tutorial we learn how to install fonts-dejavu package on Kali Linux using different package management tools: apt, apt-get and aptitude.