How To Install diploma on Kali Linux
Introduction
In this tutorial we learn how to install diploma on Kali Linux.
What is diploma
diploma is:
Debian GNU/Linux is widely used at universities to do research and to write papers with LaTeX. The package diploma contains examples which illustrate the possible ways to do this effectively with Debian GNU/Linux. Each example consists of a source tree where you can do “make” in the top level directory and then the source code is compiled, the measurement data are processed, and the results are converted into nice figures. Then the text is processed and combined with the figures to a print file.
There are three methods to install diploma 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 diploma Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install diploma using apt-get by running the following command:
sudo apt-get -y install diplomaInstall diploma Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install diploma using apt by running the following command:
sudo apt -y install diplomaInstall diploma 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 diploma using aptitude by running the following command:
sudo aptitude -y install diplomaHow To Uninstall diploma on Kali Linux
To uninstall only the diploma package we can use the following command:
sudo apt-get remove diplomaUninstall diploma And Its Dependencies
To uninstall diploma and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove diplomaRemove diploma Configurations and Data
To remove diploma configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge diplomaRemove diploma configuration, data, and all of its dependencies
We can use the following command to remove diploma configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge diplomaDependencies
diploma have the following dependencies:
References
Summary
In this tutorial we learn how to install diploma package on Kali Linux using different package management tools: apt, apt-get and aptitude.