How To Install libmath-random-isaac-xs-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmath-random-isaac-xs-perl on Kali Linux.
What is libmath-random-isaac-xs-perl
libmath-random-isaac-xs-perl is:
Math::Random::ISAAC::XS implements the same interface as Math::Random::ISAAC and can be used as a drop-in replacement. This is the recommended version of the module, based on Bob Jenkins’ reference implementation in C as described in his paper at: URL:http://burtleburtle.net/bob/rand/isaac.html
If you install this package, then any code that uses Math::Random::ISAAC will automagically benefit from this faster implementation. Performance increases are somewhere on the order of 400-500%.
There are three methods to install libmath-random-isaac-xs-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-random-isaac-xs-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-random-isaac-xs-perl using apt-get by running the following command:
sudo apt-get -y install libmath-random-isaac-xs-perlInstall libmath-random-isaac-xs-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libmath-random-isaac-xs-perl using apt by running the following command:
sudo apt -y install libmath-random-isaac-xs-perlInstall libmath-random-isaac-xs-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-random-isaac-xs-perl using aptitude by running the following command:
sudo aptitude -y install libmath-random-isaac-xs-perlHow To Uninstall libmath-random-isaac-xs-perl on Kali Linux
To uninstall only the libmath-random-isaac-xs-perl package we can use the following command:
sudo apt-get remove libmath-random-isaac-xs-perlUninstall libmath-random-isaac-xs-perl And Its Dependencies
To uninstall libmath-random-isaac-xs-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmath-random-isaac-xs-perlRemove libmath-random-isaac-xs-perl Configurations and Data
To remove libmath-random-isaac-xs-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmath-random-isaac-xs-perlRemove libmath-random-isaac-xs-perl configuration, data, and all of its dependencies
We can use the following command to remove libmath-random-isaac-xs-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmath-random-isaac-xs-perlDependencies
libmath-random-isaac-xs-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmath-random-isaac-xs-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.