How To Install libparams-classify-perl on Kali Linux
Introduction
In this tutorial we learn how to install libparams-classify-perl on Kali Linux.
What is libparams-classify-perl
libparams-classify-perl is:
Params::Classify provides various type-testing functions. These are intended for functions that, unlike most Perl code, care what type of data they are operating on. For example, some functions wish to behave differently depending on the type of their arguments (like overloaded functions in C++).
These functions only provide type classification; they do not enforce type restrictions. Type enforcement may, of course, be built using these classification functions, but the reader’s attention is drawn to libparams-validate-perl.
There are three methods to install libparams-classify-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 libparams-classify-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libparams-classify-perl using apt-get by running the following command:
sudo apt-get -y install libparams-classify-perlInstall libparams-classify-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libparams-classify-perl using apt by running the following command:
sudo apt -y install libparams-classify-perlInstall libparams-classify-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 libparams-classify-perl using aptitude by running the following command:
sudo aptitude -y install libparams-classify-perlHow To Uninstall libparams-classify-perl on Kali Linux
To uninstall only the libparams-classify-perl package we can use the following command:
sudo apt-get remove libparams-classify-perlUninstall libparams-classify-perl And Its Dependencies
To uninstall libparams-classify-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libparams-classify-perlRemove libparams-classify-perl Configurations and Data
To remove libparams-classify-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libparams-classify-perlRemove libparams-classify-perl configuration, data, and all of its dependencies
We can use the following command to remove libparams-classify-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libparams-classify-perlDependencies
libparams-classify-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libparams-classify-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.