How To Install libtext-wrapi18n-perl on Kali Linux

In this tutorial we learn how to install libtext-wrapi18n-perl on Kali Linux. libtext-wrapi18n-perl is internationalized substitute of Text

Introduction

In this tutorial we learn how to install libtext-wrapi18n-perl on Kali Linux.

What is libtext-wrapi18n-perl

libtext-wrapi18n-perl is:

The Text::WrapI18N module is a substitution for Text::Wrap, supporting multibyte characters such as UTF-8, EUC-JP, and GB2312, fullwidth characters such as east Asian characters, combining characters such as diacritical marks and Thai, and languages which don’t use whitespaces between words such as Chinese and Japanese.

It provides wrap().

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

sudo apt-get -y install libtext-wrapi18n-perl

Install libtext-wrapi18n-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libtext-wrapi18n-perl using apt by running the following command:

sudo apt -y install libtext-wrapi18n-perl

Install libtext-wrapi18n-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 libtext-wrapi18n-perl using aptitude by running the following command:

sudo aptitude -y install libtext-wrapi18n-perl

How To Uninstall libtext-wrapi18n-perl on Kali Linux

To uninstall only the libtext-wrapi18n-perl package we can use the following command:

sudo apt-get remove libtext-wrapi18n-perl

Uninstall libtext-wrapi18n-perl And Its Dependencies

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

sudo apt-get -y autoremove libtext-wrapi18n-perl

Remove libtext-wrapi18n-perl Configurations and Data

To remove libtext-wrapi18n-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libtext-wrapi18n-perl

Remove libtext-wrapi18n-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libtext-wrapi18n-perl

Dependencies

libtext-wrapi18n-perl have the following dependencies:

References

Summary

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