How To Install fonts-dzongkha on Kali Linux
Introduction
In this tutorial we learn how to install fonts-dzongkha on Kali Linux.
What is fonts-dzongkha
fonts-dzongkha is:
This package includes fonts that are suitable for the display of the Dzongkha language (national language of Bhutan).
There are three methods to install fonts-dzongkha 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-dzongkha Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install fonts-dzongkha using apt-get by running the following command:
sudo apt-get -y install fonts-dzongkhaInstall fonts-dzongkha Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install fonts-dzongkha using apt by running the following command:
sudo apt -y install fonts-dzongkhaInstall fonts-dzongkha 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-dzongkha using aptitude by running the following command:
sudo aptitude -y install fonts-dzongkhaHow To Uninstall fonts-dzongkha on Kali Linux
To uninstall only the fonts-dzongkha package we can use the following command:
sudo apt-get remove fonts-dzongkhaUninstall fonts-dzongkha And Its Dependencies
To uninstall fonts-dzongkha and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove fonts-dzongkhaRemove fonts-dzongkha Configurations and Data
To remove fonts-dzongkha configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge fonts-dzongkhaRemove fonts-dzongkha configuration, data, and all of its dependencies
We can use the following command to remove fonts-dzongkha configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fonts-dzongkhaDependencies
fonts-dzongkha have the following dependencies:
References
Summary
In this tutorial we learn how to install fonts-dzongkha package on Kali Linux using different package management tools: apt, apt-get and aptitude.