How To Install libparanoid-perl on Kali Linux
Introduction
In this tutorial we learn how to install libparanoid-perl on Kali Linux.
What is libparanoid-perl
libparanoid-perl is:
Paranoid is a collection of Perl modules that began as simple utilities which perform things in a (debatably) safer and taint-safe manner. Since then it’s also grown to include functionality that fit into the same framework and conventions of the original modules.
There are three methods to install libparanoid-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 libparanoid-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libparanoid-perl using apt-get by running the following command:
sudo apt-get -y install libparanoid-perlInstall libparanoid-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libparanoid-perl using apt by running the following command:
sudo apt -y install libparanoid-perlInstall libparanoid-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 updateAfter updating apt database, We can install libparanoid-perl using aptitude by running the following command:
sudo aptitude -y install libparanoid-perlHow To Uninstall libparanoid-perl on Kali Linux
To uninstall only the libparanoid-perl package we can use the following command:
sudo apt-get remove libparanoid-perlUninstall libparanoid-perl And Its Dependencies
To uninstall libparanoid-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libparanoid-perlRemove libparanoid-perl Configurations and Data
To remove libparanoid-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libparanoid-perlRemove libparanoid-perl configuration, data, and all of its dependencies
We can use the following command to remove libparanoid-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libparanoid-perlDependencies
libparanoid-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libparanoid-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.