How To Install libmime-encwords-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmime-encwords-perl on Kali Linux.
What is libmime-encwords-perl
libmime-encwords-perl is:
MIME::EncWords is a module providing several utilities to encode and decode arbitrary text in RFC 2047 (formerly RFC 1522) format. The MIME standard gives users the ability to represent any characters in any character set by using special sequences like:
=?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?=
There are various modules available to manipulate these special character sequences. This module bears most resemblance to the MIME::Words module and provides a similar interface, providing for relatively painless upgrading, while having stricter conformance to the aforementioned RFCs. It provides more flexibility than MIME::WordDecoder because characters can be mapped into any desired encoding, rather than simply the local system representation.
There are three methods to install libmime-encwords-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-encwords-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-encwords-perl using apt-get by running the following command:
sudo apt-get -y install libmime-encwords-perlInstall libmime-encwords-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libmime-encwords-perl using apt by running the following command:
sudo apt -y install libmime-encwords-perlInstall libmime-encwords-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-encwords-perl using aptitude by running the following command:
sudo aptitude -y install libmime-encwords-perlHow To Uninstall libmime-encwords-perl on Kali Linux
To uninstall only the libmime-encwords-perl package we can use the following command:
sudo apt-get remove libmime-encwords-perlUninstall libmime-encwords-perl And Its Dependencies
To uninstall libmime-encwords-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmime-encwords-perlRemove libmime-encwords-perl Configurations and Data
To remove libmime-encwords-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmime-encwords-perlRemove libmime-encwords-perl configuration, data, and all of its dependencies
We can use the following command to remove libmime-encwords-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmime-encwords-perlDependencies
libmime-encwords-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmime-encwords-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.