How To Install libmp3-info-perl on Kali Linux
Introduction
In this tutorial we learn how to install libmp3-info-perl
on Kali Linux.
What is libmp3-info-perl
libmp3-info-perl is:
This Perl library gives a set of function for manipulating info tags in MP3 files and retrieving technical information from them.
This package was formerly known as MPEG::MP3Info and still has a wrapper for applications that refer to it using the old name.
The Debian package also provides a simple tool for editing MP3 tags - mp3id.
There are three methods to install libmp3-info-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 libmp3-info-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 libmp3-info-perl
using apt-get
by running the following command:
sudo apt-get -y install libmp3-info-perl
Install libmp3-info-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmp3-info-perl
using apt
by running the following command:
sudo apt -y install libmp3-info-perl
Install libmp3-info-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 libmp3-info-perl
using aptitude
by running the following command:
sudo aptitude -y install libmp3-info-perl
How To Uninstall libmp3-info-perl on Kali Linux
To uninstall only the libmp3-info-perl
package we can use the following command:
sudo apt-get remove libmp3-info-perl
Uninstall libmp3-info-perl And Its Dependencies
To uninstall libmp3-info-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmp3-info-perl
Remove libmp3-info-perl Configurations and Data
To remove libmp3-info-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmp3-info-perl
Remove libmp3-info-perl configuration, data, and all of its dependencies
We can use the following command to remove libmp3-info-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmp3-info-perl
Dependencies
libmp3-info-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libmp3-info-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.