How To Install libsub-identify-perl on Kali Linux
Introduction
In this tutorial we learn how to install libsub-identify-perl
on Kali Linux.
What is libsub-identify-perl
libsub-identify-perl is:
Sub::Identify allows you to retrieve the real name of code references. For this, it uses perl’s introspection mechanism, provided by the B module.
It provides four functions : sub_name returns the name of the subroutine (or ANON if it’s an anonymous code reference), stash_name returns its package, and sub_fullname returns the concatenation of the two.
The fourth function, get_code_info, returns a list of two elements, the package and the subroutine name (in case of you want both and are worried by the speed.)
In case of subroutine aliasing, those functions always return the original name.
There are three methods to install libsub-identify-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 libsub-identify-perl Using apt-get
Update apt database with apt-get
using the following command.
After updating apt database, We can install libsub-identify-perl
using apt-get
by running the following command:
Install libsub-identify-perl Using apt
Update apt database with apt
using the following command.
After updating apt database, We can install libsub-identify-perl
using apt
by running the following command:
Install libsub-identify-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.
After updating apt database, We can install libsub-identify-perl
using aptitude
by running the following command:
How To Uninstall libsub-identify-perl on Kali Linux
To uninstall only the libsub-identify-perl
package we can use the following command:
Uninstall libsub-identify-perl And Its Dependencies
To uninstall libsub-identify-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
Remove libsub-identify-perl Configurations and Data
To remove libsub-identify-perl
configuration and data from Kali Linux we can use the following command:
Remove libsub-identify-perl configuration, data, and all of its dependencies
We can use the following command to remove libsub-identify-perl
configurations, data and all of its dependencies, we can use the following command:
Dependencies
libsub-identify-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libsub-identify-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.