How To Install libmime-explode-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmime-explode-perl on Kali Linux.
What is libmime-explode-perl
libmime-explode-perl is:
MIME::Explode is a Perl module for parsing and decoding single or multipart MIME messages, and outputting its decoded components to a given directory. The module is designed to allows users to extract the attached files out of a MIME encoded email messages or mailboxes.
There are three methods to install libmime-explode-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-explode-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-explode-perl using apt-get by running the following command:
sudo apt-get -y install libmime-explode-perlInstall libmime-explode-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libmime-explode-perl using apt by running the following command:
sudo apt -y install libmime-explode-perlInstall libmime-explode-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-explode-perl using aptitude by running the following command:
sudo aptitude -y install libmime-explode-perlHow To Uninstall libmime-explode-perl on Kali Linux
To uninstall only the libmime-explode-perl package we can use the following command:
sudo apt-get remove libmime-explode-perlUninstall libmime-explode-perl And Its Dependencies
To uninstall libmime-explode-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmime-explode-perlRemove libmime-explode-perl Configurations and Data
To remove libmime-explode-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmime-explode-perlRemove libmime-explode-perl configuration, data, and all of its dependencies
We can use the following command to remove libmime-explode-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmime-explode-perlDependencies
libmime-explode-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmime-explode-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.