How To Install libmath-base85-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmath-base85-perl on Kali Linux.
What is libmath-base85-perl
libmath-base85-perl is:
RFC 1924 describes a compact, fixed-size representation of IPv6 addresses which uses a base 85 number system. Math::Base85 handles some of the uglier details of it.
The base 85 numbers (from 0 to 84) are as follows:
0..9 A..Z a..z ! # $ % & ( ) * + - ; < = > ? @ ^ _ ` { | } ~
At the moment, there’s not much in this module. But it should be sufficient for the purposes of RFC 1924.
This module has a variable called $Math::Base85::base85_digits, which is a string containing the digits of the base 85 alphabet from lowest (0) to highest (~), in that order.
There are three methods to install libmath-base85-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 libmath-base85-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libmath-base85-perl using apt-get by running the following command:
sudo apt-get -y install libmath-base85-perlInstall libmath-base85-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libmath-base85-perl using apt by running the following command:
sudo apt -y install libmath-base85-perlInstall libmath-base85-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 libmath-base85-perl using aptitude by running the following command:
sudo aptitude -y install libmath-base85-perlHow To Uninstall libmath-base85-perl on Kali Linux
To uninstall only the libmath-base85-perl package we can use the following command:
sudo apt-get remove libmath-base85-perlUninstall libmath-base85-perl And Its Dependencies
To uninstall libmath-base85-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmath-base85-perlRemove libmath-base85-perl Configurations and Data
To remove libmath-base85-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmath-base85-perlRemove libmath-base85-perl configuration, data, and all of its dependencies
We can use the following command to remove libmath-base85-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmath-base85-perlDependencies
libmath-base85-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmath-base85-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.