How To Install libarray-unique-perl on Kali Linux
Introduction
In this tutorial we learn how to install libarray-unique-perl
on Kali Linux.
What is libarray-unique-perl
libarray-unique-perl is:
Array::Unique lets you create an array which will allow only one occurrence of any value. In other words, no matter how many times you put in 42, it will keep only the first occurrence and the rest will be dropped.
Uniqueness is checked with the ’eq’ operator so among other things it is case sensitive. As a side effect, the module does not allow undef as a value in the array.
There are three methods to install libarray-unique-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 libarray-unique-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 libarray-unique-perl
using apt-get
by running the following command:
sudo apt-get -y install libarray-unique-perl
Install libarray-unique-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libarray-unique-perl
using apt
by running the following command:
sudo apt -y install libarray-unique-perl
Install libarray-unique-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 libarray-unique-perl
using aptitude
by running the following command:
sudo aptitude -y install libarray-unique-perl
How To Uninstall libarray-unique-perl on Kali Linux
To uninstall only the libarray-unique-perl
package we can use the following command:
sudo apt-get remove libarray-unique-perl
Uninstall libarray-unique-perl And Its Dependencies
To uninstall libarray-unique-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libarray-unique-perl
Remove libarray-unique-perl Configurations and Data
To remove libarray-unique-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libarray-unique-perl
Remove libarray-unique-perl configuration, data, and all of its dependencies
We can use the following command to remove libarray-unique-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libarray-unique-perl
Dependencies
libarray-unique-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libarray-unique-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.