How To Install libmonkey-patch-action-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmonkey-patch-action-perl on Kali Linux.
What is libmonkey-patch-action-perl
libmonkey-patch-action-perl is:
Monkey patching is a way to extend or modify the runtime code of a program or library without altering the original source code.
Monkey::Patch::Action is based on Monkey::Patch and provides lexical scope monkey-patching so that you can wrap any other package’s subroutine with your own code. It makes things even easier by helping you apply a stack of patches and unapply them later in flexible order.
There are three methods to install libmonkey-patch-action-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 libmonkey-patch-action-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libmonkey-patch-action-perl using apt-get by running the following command:
sudo apt-get -y install libmonkey-patch-action-perlInstall libmonkey-patch-action-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libmonkey-patch-action-perl using apt by running the following command:
sudo apt -y install libmonkey-patch-action-perlInstall libmonkey-patch-action-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 libmonkey-patch-action-perl using aptitude by running the following command:
sudo aptitude -y install libmonkey-patch-action-perlHow To Uninstall libmonkey-patch-action-perl on Kali Linux
To uninstall only the libmonkey-patch-action-perl package we can use the following command:
sudo apt-get remove libmonkey-patch-action-perlUninstall libmonkey-patch-action-perl And Its Dependencies
To uninstall libmonkey-patch-action-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmonkey-patch-action-perlRemove libmonkey-patch-action-perl Configurations and Data
To remove libmonkey-patch-action-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmonkey-patch-action-perlRemove libmonkey-patch-action-perl configuration, data, and all of its dependencies
We can use the following command to remove libmonkey-patch-action-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmonkey-patch-action-perlDependencies
libmonkey-patch-action-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmonkey-patch-action-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.