How To Install libextutils-cchecker-perl on Kali Linux
Introduction
In this tutorial we learn how to install libextutils-cchecker-perl
on Kali Linux.
What is libextutils-cchecker-perl
libextutils-cchecker-perl is:
ExtUtils::CChecker is a Perl module designed to check for the presence of libraries and C headers required for building the remainder of your package. It is particularly useful for packages containing Perl bindings to existing C libraries.
There are three methods to install libextutils-cchecker-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 libextutils-cchecker-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 libextutils-cchecker-perl
using apt-get
by running the following command:
sudo apt-get -y install libextutils-cchecker-perl
Install libextutils-cchecker-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libextutils-cchecker-perl
using apt
by running the following command:
sudo apt -y install libextutils-cchecker-perl
Install libextutils-cchecker-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 libextutils-cchecker-perl
using aptitude
by running the following command:
sudo aptitude -y install libextutils-cchecker-perl
How To Uninstall libextutils-cchecker-perl on Kali Linux
To uninstall only the libextutils-cchecker-perl
package we can use the following command:
sudo apt-get remove libextutils-cchecker-perl
Uninstall libextutils-cchecker-perl And Its Dependencies
To uninstall libextutils-cchecker-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libextutils-cchecker-perl
Remove libextutils-cchecker-perl Configurations and Data
To remove libextutils-cchecker-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libextutils-cchecker-perl
Remove libextutils-cchecker-perl configuration, data, and all of its dependencies
We can use the following command to remove libextutils-cchecker-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libextutils-cchecker-perl
Dependencies
libextutils-cchecker-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libextutils-cchecker-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.