How To Install libmail-mbox-messageparser-perl on Kali Linux

In this tutorial we learn how to install libmail-mbox-messageparser-perl on Kali Linux. libmail-mbox-messageparser-perl is Perl module for processing mbox folders

Introduction

In this tutorial we learn how to install libmail-mbox-messageparser-perl on Kali Linux.

What is libmail-mbox-messageparser-perl

libmail-mbox-messageparser-perl is:

Mail::Mbox::MessageParser is a Perl module that provides a feature-poor but very fast mbox parser. It uses the best of three strategies for parsing a mailbox: cached folder information, GNU grep, or highly optimized Perl.

There are three methods to install libmail-mbox-messageparser-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 libmail-mbox-messageparser-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libmail-mbox-messageparser-perl using apt-get by running the following command:

sudo apt-get -y install libmail-mbox-messageparser-perl

Install libmail-mbox-messageparser-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libmail-mbox-messageparser-perl using apt by running the following command:

sudo apt -y install libmail-mbox-messageparser-perl

Install libmail-mbox-messageparser-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 update

After updating apt database, We can install libmail-mbox-messageparser-perl using aptitude by running the following command:

sudo aptitude -y install libmail-mbox-messageparser-perl

How To Uninstall libmail-mbox-messageparser-perl on Kali Linux

To uninstall only the libmail-mbox-messageparser-perl package we can use the following command:

sudo apt-get remove libmail-mbox-messageparser-perl

Uninstall libmail-mbox-messageparser-perl And Its Dependencies

To uninstall libmail-mbox-messageparser-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libmail-mbox-messageparser-perl

Remove libmail-mbox-messageparser-perl Configurations and Data

To remove libmail-mbox-messageparser-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libmail-mbox-messageparser-perl

Remove libmail-mbox-messageparser-perl configuration, data, and all of its dependencies

We can use the following command to remove libmail-mbox-messageparser-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libmail-mbox-messageparser-perl

Dependencies

libmail-mbox-messageparser-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libmail-mbox-messageparser-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.