How To Install libweb-simple-perl on Kali Linux
Introduction
In this tutorial we learn how to install libweb-simple-perl
on Kali Linux.
What is libweb-simple-perl
libweb-simple-perl is:
Web::Simple provides a bare minimum system for writing web applications that don’t need a full-fledged web framework.
The philosophy of Web::Simple is to keep to an absolute bare minimum, for everything. It is not designed to be used for large scale applications; the Catalyst web framework already works very nicely for that and is a far more mature, well supported piece of software.
However, if you have an application that only does a couple of things, and want to not have to think about complexities of deployment, then Web::Simple might be just the thing for you.
There are three methods to install libweb-simple-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 libweb-simple-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 libweb-simple-perl
using apt-get
by running the following command:
sudo apt-get -y install libweb-simple-perl
Install libweb-simple-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libweb-simple-perl
using apt
by running the following command:
sudo apt -y install libweb-simple-perl
Install libweb-simple-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 libweb-simple-perl
using aptitude
by running the following command:
sudo aptitude -y install libweb-simple-perl
How To Uninstall libweb-simple-perl on Kali Linux
To uninstall only the libweb-simple-perl
package we can use the following command:
sudo apt-get remove libweb-simple-perl
Uninstall libweb-simple-perl And Its Dependencies
To uninstall libweb-simple-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libweb-simple-perl
Remove libweb-simple-perl Configurations and Data
To remove libweb-simple-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libweb-simple-perl
Remove libweb-simple-perl configuration, data, and all of its dependencies
We can use the following command to remove libweb-simple-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libweb-simple-perl
Dependencies
libweb-simple-perl have the following dependencies:
- perl
- libhttp-body-perl
- libmoo-perl
- libplack-perl
- libstrictures-perl
- libsyntax-keyword-gather-perl
- libwarnings-illegalproto-perl
References
Summary
In this tutorial we learn how to install libweb-simple-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.