How To Install libmoo-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmoo-perl on Kali Linux.
What is libmoo-perl
libmoo-perl is:
Moo is an extremely light-weight, high-performance Moose replacement. It also avoids depending on any XS modules to allow simple deployments. The name Moo is based on the idea that it provides almost - but not quite - two thirds of Moose.
Unlike Mouse this module does not aim at full Moose compatibility. See INCOMPATIBILITIES in Moo(3pm) for more details.
There are three methods to install libmoo-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 libmoo-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libmoo-perl using apt-get by running the following command:
sudo apt-get -y install libmoo-perlInstall libmoo-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libmoo-perl using apt by running the following command:
sudo apt -y install libmoo-perlInstall libmoo-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 libmoo-perl using aptitude by running the following command:
sudo aptitude -y install libmoo-perlHow To Uninstall libmoo-perl on Kali Linux
To uninstall only the libmoo-perl package we can use the following command:
sudo apt-get remove libmoo-perlUninstall libmoo-perl And Its Dependencies
To uninstall libmoo-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmoo-perlRemove libmoo-perl Configurations and Data
To remove libmoo-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmoo-perlRemove libmoo-perl configuration, data, and all of its dependencies
We can use the following command to remove libmoo-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmoo-perlDependencies
libmoo-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmoo-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.