How To Install debram on Kali Linux
Introduction
In this tutorial we learn how to install debram on Kali Linux.
What is debram
debram is:
Debian GNU/Linux provides thousands upon daunting thousands of commands. Sorting them into broad classes then dividing and redividing them into finer, more specific branches, the Debram ramifies Debian’s commands in much the same manner as a university library ramifies its books. If you know what you want your computer to do but do not yet know the command to do it, you can find the command here.
(The Debram package used also – indeed mainly – to include a much larger and more important ramification of Debian packages, along with a browsing tool; but Debtags has superseded Debram in those respects. What the Debram package still includes however is the Command Selection Guide, which though somewhat outdated may still be of use.)
There are three methods to install debram 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 debram Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install debram using apt-get by running the following command:
sudo apt-get -y install debramInstall debram Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install debram using apt by running the following command:
sudo apt -y install debramInstall debram 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 debram using aptitude by running the following command:
sudo aptitude -y install debramHow To Uninstall debram on Kali Linux
To uninstall only the debram package we can use the following command:
sudo apt-get remove debramUninstall debram And Its Dependencies
To uninstall debram and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove debramRemove debram Configurations and Data
To remove debram configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge debramRemove debram configuration, data, and all of its dependencies
We can use the following command to remove debram configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge debramDependencies
debram have the following dependencies:
References
Summary
In this tutorial we learn how to install debram package on Kali Linux using different package management tools: apt, apt-get and aptitude.