How To Install west-chamber-dkms on Kali Linux
Introduction
In this tutorial we learn how to install west-chamber-dkms on Kali Linux.
What is west-chamber-dkms
west-chamber-dkms is:
West-chamber is an iptable extension named after the famous Chinese ancient fiction - Romance of the West Chamber. It is based on the idea of T. Ptacek’s paper in 1998 which allows users go through some content-filtered firewall without 3rd-party proxies.
The dkms package will automatically compile the driver for your current kernel version.
There are three methods to install west-chamber-dkms 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 west-chamber-dkms Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install west-chamber-dkms using apt-get by running the following command:
sudo apt-get -y install west-chamber-dkmsInstall west-chamber-dkms Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install west-chamber-dkms using apt by running the following command:
sudo apt -y install west-chamber-dkmsInstall west-chamber-dkms 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 west-chamber-dkms using aptitude by running the following command:
sudo aptitude -y install west-chamber-dkmsHow To Uninstall west-chamber-dkms on Kali Linux
To uninstall only the west-chamber-dkms package we can use the following command:
sudo apt-get remove west-chamber-dkmsUninstall west-chamber-dkms And Its Dependencies
To uninstall west-chamber-dkms and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove west-chamber-dkmsRemove west-chamber-dkms Configurations and Data
To remove west-chamber-dkms configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge west-chamber-dkmsRemove west-chamber-dkms configuration, data, and all of its dependencies
We can use the following command to remove west-chamber-dkms configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge west-chamber-dkmsDependencies
west-chamber-dkms have the following dependencies:
References
Summary
In this tutorial we learn how to install west-chamber-dkms package on Kali Linux using different package management tools: apt, apt-get and aptitude.