How To Install libmimelib1c2a on Kali Linux

In this tutorial we learn how to install libmimelib1c2a on Kali Linux. libmimelib1c2a is mime library - runtime

Introduction

In this tutorial we learn how to install libmimelib1c2a on Kali Linux.

What is libmimelib1c2a

libmimelib1c2a is:

The mimelib library is a C++ class library for creating, parsing, and modifying messages in MIME format.

This version of the library is a slightly patched version from kdepim3.

This is the runtime package for programs that use the libmimelib library.

There are three methods to install libmimelib1c2a 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 libmimelib1c2a Using apt-get

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

sudo apt-get update

After updating apt database, We can install libmimelib1c2a using apt-get by running the following command:

sudo apt-get -y install libmimelib1c2a

Install libmimelib1c2a Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libmimelib1c2a using apt by running the following command:

sudo apt -y install libmimelib1c2a

Install libmimelib1c2a 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 libmimelib1c2a using aptitude by running the following command:

sudo aptitude -y install libmimelib1c2a

How To Uninstall libmimelib1c2a on Kali Linux

To uninstall only the libmimelib1c2a package we can use the following command:

sudo apt-get remove libmimelib1c2a

Uninstall libmimelib1c2a And Its Dependencies

To uninstall libmimelib1c2a and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libmimelib1c2a

Remove libmimelib1c2a Configurations and Data

To remove libmimelib1c2a configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libmimelib1c2a

Remove libmimelib1c2a configuration, data, and all of its dependencies

We can use the following command to remove libmimelib1c2a configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libmimelib1c2a

Dependencies

libmimelib1c2a have the following dependencies:

References

Summary

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