How To Install elpa-dpkg-dev-el on Kali Linux
Introduction
In this tutorial we learn how to install elpa-dpkg-dev-el on Kali Linux.
What is elpa-dpkg-dev-el
elpa-dpkg-dev-el is:
This package contains:
debian-bts-control - builds [email protected] email messages; debian-changelog-mode - a helper mode for Debian changelogs; debian-control-mode - a helper mode for debian/control files; debian-copyright - major mode for Debian package copyright files; readme-debian - major mode for editing README.Debian files.
There are three methods to install elpa-dpkg-dev-el 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 elpa-dpkg-dev-el Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install elpa-dpkg-dev-el using apt-get by running the following command:
sudo apt-get -y install elpa-dpkg-dev-elInstall elpa-dpkg-dev-el Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install elpa-dpkg-dev-el using apt by running the following command:
sudo apt -y install elpa-dpkg-dev-elInstall elpa-dpkg-dev-el 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 elpa-dpkg-dev-el using aptitude by running the following command:
sudo aptitude -y install elpa-dpkg-dev-elHow To Uninstall elpa-dpkg-dev-el on Kali Linux
To uninstall only the elpa-dpkg-dev-el package we can use the following command:
sudo apt-get remove elpa-dpkg-dev-elUninstall elpa-dpkg-dev-el And Its Dependencies
To uninstall elpa-dpkg-dev-el and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove elpa-dpkg-dev-elRemove elpa-dpkg-dev-el Configurations and Data
To remove elpa-dpkg-dev-el configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge elpa-dpkg-dev-elRemove elpa-dpkg-dev-el configuration, data, and all of its dependencies
We can use the following command to remove elpa-dpkg-dev-el configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge elpa-dpkg-dev-elDependencies
elpa-dpkg-dev-el have the following dependencies:
References
Summary
In this tutorial we learn how to install elpa-dpkg-dev-el package on Kali Linux using different package management tools: apt, apt-get and aptitude.