How To Install libserver-starter-perl on Kali Linux
Introduction
In this tutorial we learn how to install libserver-starter-perl
on Kali Linux.
What is libserver-starter-perl
libserver-starter-perl is:
It is often a pain to write a server program that supports graceful restarts, with no resource leaks. Server::Starter solves the problem by splitting the task into two. One is start_server, a script provided as a part of the module, which works as a superdaemon that binds to zero or more TCP ports or unix sockets, and repeatedly spawns the server program that actually handles the necessary tasks (for example, responding to incoming commenctions). The spawned server programs under Server::Starter call accept(2) and handle the requests.
To gracefully restart the server program, send SIGHUP to the superdaemon. The superdaemon spawns a new server program, and if (and only if) it starts up successfully, sends SIGTERM to the old server program.
There are three methods to install libserver-starter-perl
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 libserver-starter-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libserver-starter-perl
using apt-get
by running the following command:
sudo apt-get -y install libserver-starter-perl
Install libserver-starter-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libserver-starter-perl
using apt
by running the following command:
sudo apt -y install libserver-starter-perl
Install libserver-starter-perl 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 update
After updating apt database, We can install libserver-starter-perl
using aptitude
by running the following command:
sudo aptitude -y install libserver-starter-perl
How To Uninstall libserver-starter-perl on Kali Linux
To uninstall only the libserver-starter-perl
package we can use the following command:
sudo apt-get remove libserver-starter-perl
Uninstall libserver-starter-perl And Its Dependencies
To uninstall libserver-starter-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libserver-starter-perl
Remove libserver-starter-perl Configurations and Data
To remove libserver-starter-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libserver-starter-perl
Remove libserver-starter-perl configuration, data, and all of its dependencies
We can use the following command to remove libserver-starter-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libserver-starter-perl
Dependencies
libserver-starter-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libserver-starter-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.