How To Install libtest-weaken-perl on Kali Linux
Introduction
In this tutorial we learn how to install libtest-weaken-perl
on Kali Linux.
What is libtest-weaken-perl
libtest-weaken-perl is:
A memory leak occurs when a Perl data structure is destroyed but some of the contents of that structure are not freed. Leaked memory is a useless overhead. Leaks can significantly impact system performance. They can also cause an application to abend due to lack of memory. In Perl, circular references are a common cause of memory leaks. Circular references are allowed in Perl, but data structures containing circular references will leak memory unless the programmer takes specific measures to prevent leaks. Preventive measures include weakening the references and arranging to break the reference cycle just before the structure is destroyed. When using circular references, it is easy to misdesign or misimplement a scheme for preventing memory leaks. Mistakes of this kind have been hard to detect in a test suite. Test::Weaken allows easy detection of unfreed Perl data and allows you to examine the unfreed data, even data that would usually have been made inaccessible.
There are three methods to install libtest-weaken-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 libtest-weaken-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 libtest-weaken-perl
using apt-get
by running the following command:
sudo apt-get -y install libtest-weaken-perl
Install libtest-weaken-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libtest-weaken-perl
using apt
by running the following command:
sudo apt -y install libtest-weaken-perl
Install libtest-weaken-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 libtest-weaken-perl
using aptitude
by running the following command:
sudo aptitude -y install libtest-weaken-perl
How To Uninstall libtest-weaken-perl on Kali Linux
To uninstall only the libtest-weaken-perl
package we can use the following command:
sudo apt-get remove libtest-weaken-perl
Uninstall libtest-weaken-perl And Its Dependencies
To uninstall libtest-weaken-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libtest-weaken-perl
Remove libtest-weaken-perl Configurations and Data
To remove libtest-weaken-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libtest-weaken-perl
Remove libtest-weaken-perl configuration, data, and all of its dependencies
We can use the following command to remove libtest-weaken-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtest-weaken-perl
Dependencies
libtest-weaken-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libtest-weaken-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.