How To Install fonts-dancingscript on Kali Linux
Introduction
In this tutorial we learn how to install fonts-dancingscript on Kali Linux.
What is fonts-dancingscript
fonts-dancingscript is:
Dancing Script references popular scripts typefaces from the 50’s. It relates to Murray Hill (Emil Klumpp. 1956) in its weight distribution, and to Mistral (Roger Excoffon. 1953) in its lively bouncing effect.
Use it when you want a friendly, informal and spontaneous look.
There are three methods to install fonts-dancingscript 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-dancingscript Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install fonts-dancingscript using apt-get by running the following command:
sudo apt-get -y install fonts-dancingscriptInstall fonts-dancingscript Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install fonts-dancingscript using apt by running the following command:
sudo apt -y install fonts-dancingscriptInstall fonts-dancingscript 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-dancingscript using aptitude by running the following command:
sudo aptitude -y install fonts-dancingscriptHow To Uninstall fonts-dancingscript on Kali Linux
To uninstall only the fonts-dancingscript package we can use the following command:
sudo apt-get remove fonts-dancingscriptUninstall fonts-dancingscript And Its Dependencies
To uninstall fonts-dancingscript and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove fonts-dancingscriptRemove fonts-dancingscript Configurations and Data
To remove fonts-dancingscript configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge fonts-dancingscriptRemove fonts-dancingscript configuration, data, and all of its dependencies
We can use the following command to remove fonts-dancingscript configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fonts-dancingscriptDependencies
fonts-dancingscript have the following dependencies:
References
Summary
In this tutorial we learn how to install fonts-dancingscript package on Kali Linux using different package management tools: apt, apt-get and aptitude.