How To Install libperlio-utf8-strict-perl on Kali Linux

In this tutorial we learn how to install libperlio-utf8-strict-perl on Kali Linux. libperlio-utf8-strict-perl is fast and correct UTF-8 Perl IO module

Introduction

In this tutorial we learn how to install libperlio-utf8-strict-perl on Kali Linux.

What is libperlio-utf8-strict-perl

libperlio-utf8-strict-perl is:

PerlIO::utf8_strict provides a fast and correct UTF-8 PerlIO layer. Unlike perl’s default :utf8 layer it checks the input for correctness and will croak if it finds an ill-formed UTF-8 octet sequence or noncharacter code points not meant for interchange.

There are three methods to install libperlio-utf8-strict-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 libperlio-utf8-strict-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 libperlio-utf8-strict-perl using apt-get by running the following command:

sudo apt-get -y install libperlio-utf8-strict-perl

Install libperlio-utf8-strict-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libperlio-utf8-strict-perl using apt by running the following command:

sudo apt -y install libperlio-utf8-strict-perl

Install libperlio-utf8-strict-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 libperlio-utf8-strict-perl using aptitude by running the following command:

sudo aptitude -y install libperlio-utf8-strict-perl

How To Uninstall libperlio-utf8-strict-perl on Kali Linux

To uninstall only the libperlio-utf8-strict-perl package we can use the following command:

sudo apt-get remove libperlio-utf8-strict-perl

Uninstall libperlio-utf8-strict-perl And Its Dependencies

To uninstall libperlio-utf8-strict-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libperlio-utf8-strict-perl

Remove libperlio-utf8-strict-perl Configurations and Data

To remove libperlio-utf8-strict-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libperlio-utf8-strict-perl

Remove libperlio-utf8-strict-perl configuration, data, and all of its dependencies

We can use the following command to remove libperlio-utf8-strict-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libperlio-utf8-strict-perl

Dependencies

libperlio-utf8-strict-perl have the following dependencies:

References

Summary

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