How To Install libencode-eucjpms-perl on Kali Linux
Introduction
In this tutorial we learn how to install libencode-eucjpms-perl on Kali Linux.
What is libencode-eucjpms-perl
libencode-eucjpms-perl is:
This module implements Microsoft compatible encodings for Japanese. Encodings supported are as follows.
Canonical Alias Description
eucJP-ms qr/\beuc-?jp-?ms$/i eucJP-ms qr/\beuc-?jp-?win$/i cp51932 qr/\bcp51932$/i Windows Codepage 51932 cp50220 Windows Codepage 50220 cp50221 Windows Codepage 50221
To find out how to use this module in detail, see Encode.
There are three methods to install libencode-eucjpms-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 libencode-eucjpms-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libencode-eucjpms-perl using apt-get by running the following command:
sudo apt-get -y install libencode-eucjpms-perlInstall libencode-eucjpms-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libencode-eucjpms-perl using apt by running the following command:
sudo apt -y install libencode-eucjpms-perlInstall libencode-eucjpms-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 libencode-eucjpms-perl using aptitude by running the following command:
sudo aptitude -y install libencode-eucjpms-perlHow To Uninstall libencode-eucjpms-perl on Kali Linux
To uninstall only the libencode-eucjpms-perl package we can use the following command:
sudo apt-get remove libencode-eucjpms-perlUninstall libencode-eucjpms-perl And Its Dependencies
To uninstall libencode-eucjpms-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libencode-eucjpms-perlRemove libencode-eucjpms-perl Configurations and Data
To remove libencode-eucjpms-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libencode-eucjpms-perlRemove libencode-eucjpms-perl configuration, data, and all of its dependencies
We can use the following command to remove libencode-eucjpms-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libencode-eucjpms-perlDependencies
libencode-eucjpms-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libencode-eucjpms-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.