How To Install insserv on Kali Linux
Introduction
In this tutorial we learn how to install insserv on Kali Linux.
What is insserv
insserv is:
The insserv program is used by the standard SysV-based init system. It updates the order of symlinks in /etc/rc?.d/ based on dependencies specified by LSB headers in the init.d scripts themselves.
These declared relations between scripts make it possible to optimize the boot sequence for the currently installed set of packages, while detecting and rejecting dependency loops.
Using insserv incorrectly can result in an unbootable system.
There are three methods to install insserv 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 insserv Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install insserv using apt-get by running the following command:
sudo apt-get -y install insservInstall insserv Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install insserv using apt by running the following command:
sudo apt -y install insservInstall insserv 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 insserv using aptitude by running the following command:
sudo aptitude -y install insservHow To Uninstall insserv on Kali Linux
To uninstall only the insserv package we can use the following command:
sudo apt-get remove insservUninstall insserv And Its Dependencies
To uninstall insserv and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove insservRemove insserv Configurations and Data
To remove insserv configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge insservRemove insserv configuration, data, and all of its dependencies
We can use the following command to remove insserv configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge insservDependencies
insserv have the following dependencies:
References
Summary
In this tutorial we learn how to install insserv package on Kali Linux using different package management tools: apt, apt-get and aptitude.