How To Install libb-perlreq-perl on Kali Linux
Introduction
In this tutorial we learn how to install libb-perlreq-perl
on Kali Linux.
What is libb-perlreq-perl
libb-perlreq-perl is:
B::PerlReq is a backend module for the Perl compiler that determines the dependencies of Perl source code, based on the internal structure that Perl creates itself after parsing a program source file. The output of this module is suitable for automatic dependency detection, tracking and organization, particularly for building and maintaining binary packages.
There are three methods to install libb-perlreq-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 libb-perlreq-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libb-perlreq-perl
using apt-get
by running the following command:
sudo apt-get -y install libb-perlreq-perl
Install libb-perlreq-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libb-perlreq-perl
using apt
by running the following command:
sudo apt -y install libb-perlreq-perl
Install libb-perlreq-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 update
After updating apt database, We can install libb-perlreq-perl
using aptitude
by running the following command:
sudo aptitude -y install libb-perlreq-perl
How To Uninstall libb-perlreq-perl on Kali Linux
To uninstall only the libb-perlreq-perl
package we can use the following command:
sudo apt-get remove libb-perlreq-perl
Uninstall libb-perlreq-perl And Its Dependencies
To uninstall libb-perlreq-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libb-perlreq-perl
Remove libb-perlreq-perl Configurations and Data
To remove libb-perlreq-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libb-perlreq-perl
Remove libb-perlreq-perl configuration, data, and all of its dependencies
We can use the following command to remove libb-perlreq-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libb-perlreq-perl
Dependencies
libb-perlreq-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libb-perlreq-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.