How To Install php-league-mime-type-detection on Kali Linux

In this tutorial we learn how to install php-league-mime-type-detection on Kali Linux. php-league-mime-type-detection is generic mime-type detection interface for PHP

Introduction

In this tutorial we learn how to install php-league-mime-type-detection on Kali Linux.

What is php-league-mime-type-detection

php-league-mime-type-detection is:

League Mime Type Detection supplies a generic mime-type detection interface with a finfo based implementation.

As a fallback for finfo based lookup, an extension map is used to determine the mime-type. There is an advised implementation shipped, which is generated from information collected by the npm package mime-db.

There are three methods to install php-league-mime-type-detection 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 php-league-mime-type-detection Using apt-get

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

sudo apt-get update

After updating apt database, We can install php-league-mime-type-detection using apt-get by running the following command:

sudo apt-get -y install php-league-mime-type-detection

Install php-league-mime-type-detection Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install php-league-mime-type-detection using apt by running the following command:

sudo apt -y install php-league-mime-type-detection

Install php-league-mime-type-detection 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 php-league-mime-type-detection using aptitude by running the following command:

sudo aptitude -y install php-league-mime-type-detection

How To Uninstall php-league-mime-type-detection on Kali Linux

To uninstall only the php-league-mime-type-detection package we can use the following command:

sudo apt-get remove php-league-mime-type-detection

Uninstall php-league-mime-type-detection And Its Dependencies

To uninstall php-league-mime-type-detection and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove php-league-mime-type-detection

Remove php-league-mime-type-detection Configurations and Data

To remove php-league-mime-type-detection configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge php-league-mime-type-detection

Remove php-league-mime-type-detection configuration, data, and all of its dependencies

We can use the following command to remove php-league-mime-type-detection configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge php-league-mime-type-detection

Dependencies

php-league-mime-type-detection have the following dependencies:

References

Summary

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