How To Install libmime-base32-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmime-base32-perl on Kali Linux.
What is libmime-base32-perl
libmime-base32-perl is:
Similar to Base64, Base32 encodes arbitrary (binary) data in ASCII text. The difference to Base64 is that Base32 encoding is case insensitive.
Base32 is defined in rfc3548 using the characters [A-Z2-7], but this module by default uses [0-9A-V] for compatibility with older versions of MIME::Base32. An RFC compliant mode is also provided, though.
There are three methods to install libmime-base32-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 libmime-base32-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libmime-base32-perl using apt-get by running the following command:
sudo apt-get -y install libmime-base32-perlInstall libmime-base32-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libmime-base32-perl using apt by running the following command:
sudo apt -y install libmime-base32-perlInstall libmime-base32-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 libmime-base32-perl using aptitude by running the following command:
sudo aptitude -y install libmime-base32-perlHow To Uninstall libmime-base32-perl on Kali Linux
To uninstall only the libmime-base32-perl package we can use the following command:
sudo apt-get remove libmime-base32-perlUninstall libmime-base32-perl And Its Dependencies
To uninstall libmime-base32-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmime-base32-perlRemove libmime-base32-perl Configurations and Data
To remove libmime-base32-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmime-base32-perlRemove libmime-base32-perl configuration, data, and all of its dependencies
We can use the following command to remove libmime-base32-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmime-base32-perlDependencies
libmime-base32-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmime-base32-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.