How To Install libarray-group-perl on Kali Linux
Introduction
In this tutorial we learn how to install libarray-group-perl
on Kali Linux.
What is libarray-group-perl
libarray-group-perl is:
Array::Group is a module for converting a list into a list of arrayrefs of the same size. It exports two methods:
The ngroup method reformats a list into a list of arrayrefs. It is often used for formatting data into HTML tables, amongst other things.
dissect() returns a list of lists where the first element of each sublist will be one of the first elements of the source list, and the last element will be one of the last. This behaviour is much more useful when the input list is sorted.
The key difference between the two methods is that dissect() takes elements from the start of the list provided and pushes them onto each of the subarrays sequentially, rather than simply dividing the list into discrete chunks.
There are three methods to install libarray-group-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-group-perl Using apt-get
Update apt database with apt-get
using the following command.
After updating apt database, We can install libarray-group-perl
using apt-get
by running the following command:
Install libarray-group-perl Using apt
Update apt database with apt
using the following command.
After updating apt database, We can install libarray-group-perl
using apt
by running the following command:
Install libarray-group-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.
After updating apt database, We can install libarray-group-perl
using aptitude
by running the following command:
How To Uninstall libarray-group-perl on Kali Linux
To uninstall only the libarray-group-perl
package we can use the following command:
Uninstall libarray-group-perl And Its Dependencies
To uninstall libarray-group-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
Remove libarray-group-perl Configurations and Data
To remove libarray-group-perl
configuration and data from Kali Linux we can use the following command:
Remove libarray-group-perl configuration, data, and all of its dependencies
We can use the following command to remove libarray-group-perl
configurations, data and all of its dependencies, we can use the following command:
Dependencies
libarray-group-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libarray-group-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.