How To Install libi18n-acceptlanguage-perl on Kali Linux
Introduction
In this tutorial we learn how to install libi18n-acceptlanguage-perl on Kali Linux.
What is libi18n-acceptlanguage-perl
libi18n-acceptlanguage-perl is:
I18N::AcceptLanguage matches language preference to available languages per rules defined in RFC 2616, section 14.4: HTTP/1.1 - Header Field Definitions - Accept-Language.
There are three methods to install libi18n-acceptlanguage-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 libi18n-acceptlanguage-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libi18n-acceptlanguage-perl using apt-get by running the following command:
sudo apt-get -y install libi18n-acceptlanguage-perlInstall libi18n-acceptlanguage-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libi18n-acceptlanguage-perl using apt by running the following command:
sudo apt -y install libi18n-acceptlanguage-perlInstall libi18n-acceptlanguage-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 libi18n-acceptlanguage-perl using aptitude by running the following command:
sudo aptitude -y install libi18n-acceptlanguage-perlHow To Uninstall libi18n-acceptlanguage-perl on Kali Linux
To uninstall only the libi18n-acceptlanguage-perl package we can use the following command:
sudo apt-get remove libi18n-acceptlanguage-perlUninstall libi18n-acceptlanguage-perl And Its Dependencies
To uninstall libi18n-acceptlanguage-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libi18n-acceptlanguage-perlRemove libi18n-acceptlanguage-perl Configurations and Data
To remove libi18n-acceptlanguage-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libi18n-acceptlanguage-perlRemove libi18n-acceptlanguage-perl configuration, data, and all of its dependencies
We can use the following command to remove libi18n-acceptlanguage-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libi18n-acceptlanguage-perlDependencies
libi18n-acceptlanguage-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libi18n-acceptlanguage-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.