How To Install libclass-insideout-perl on Kali Linux
Introduction
In this tutorial we learn how to install libclass-insideout-perl
on Kali Linux.
What is libclass-insideout-perl
libclass-insideout-perl is:
Class::InsideOut is a simple, safe and streamlined toolkit for building inside-out objects. Unlike most other inside-out object building modules already on CPAN, this module aims for minimalism and robustness:
- Does not require derived classes to subclass it
- Uses no source filters, attributes or CHECK blocks
- Supports any underlying object type including black-box inheritance
- Does not leak memory on object destruction
- Overloading-safe
- Thread-safe for Perl 5.8.5 or better
- mod_perl compatible
- Makes no assumption about inheritance or initializer needs
It provides the minimal support necessary for creating safe inside-out objects and generating flexible accessors.
There are three methods to install libclass-insideout-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 libclass-insideout-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 libclass-insideout-perl
using apt-get
by running the following command:
sudo apt-get -y install libclass-insideout-perl
Install libclass-insideout-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libclass-insideout-perl
using apt
by running the following command:
sudo apt -y install libclass-insideout-perl
Install libclass-insideout-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 libclass-insideout-perl
using aptitude
by running the following command:
sudo aptitude -y install libclass-insideout-perl
How To Uninstall libclass-insideout-perl on Kali Linux
To uninstall only the libclass-insideout-perl
package we can use the following command:
sudo apt-get remove libclass-insideout-perl
Uninstall libclass-insideout-perl And Its Dependencies
To uninstall libclass-insideout-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libclass-insideout-perl
Remove libclass-insideout-perl Configurations and Data
To remove libclass-insideout-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libclass-insideout-perl
Remove libclass-insideout-perl configuration, data, and all of its dependencies
We can use the following command to remove libclass-insideout-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libclass-insideout-perl
Dependencies
libclass-insideout-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libclass-insideout-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.