How To Install libtoolkit-perl on Kali Linux
Introduction
In this tutorial we learn how to install libtoolkit-perl on Kali Linux.
What is libtoolkit-perl
libtoolkit-perl is:
The Toolkit module provides a standard location to store modules that you use all the time, and then loads them for you automatically. For example, instead of always writing:
use strict; use warnings; use Carp; use Smart::Comments;
in every program/module, you can just write:
use Toolkit;
and put all your favorite modules in a file.
There are three methods to install libtoolkit-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 libtoolkit-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libtoolkit-perl using apt-get by running the following command:
sudo apt-get -y install libtoolkit-perlInstall libtoolkit-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libtoolkit-perl using apt by running the following command:
sudo apt -y install libtoolkit-perlInstall libtoolkit-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 libtoolkit-perl using aptitude by running the following command:
sudo aptitude -y install libtoolkit-perlHow To Uninstall libtoolkit-perl on Kali Linux
To uninstall only the libtoolkit-perl package we can use the following command:
sudo apt-get remove libtoolkit-perlUninstall libtoolkit-perl And Its Dependencies
To uninstall libtoolkit-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libtoolkit-perlRemove libtoolkit-perl Configurations and Data
To remove libtoolkit-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libtoolkit-perlRemove libtoolkit-perl configuration, data, and all of its dependencies
We can use the following command to remove libtoolkit-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtoolkit-perlDependencies
libtoolkit-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libtoolkit-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.