How To Install liburl-encode-xs-perl on Kali Linux

In this tutorial we learn how to install liburl-encode-xs-perl on Kali Linux. liburl-encode-xs-perl is XS implementation of URL

Introduction

In this tutorial we learn how to install liburl-encode-xs-perl on Kali Linux.

What is liburl-encode-xs-perl

liburl-encode-xs-perl is:

URL::Encode::XS is an XS implementation of the URL::Encode module.

The main URL::Encode package will use this package automatically if it can find it. Do not use this package directly, use URL::Encode instead.

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

sudo apt-get -y install liburl-encode-xs-perl

Install liburl-encode-xs-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install liburl-encode-xs-perl using apt by running the following command:

sudo apt -y install liburl-encode-xs-perl

Install liburl-encode-xs-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 liburl-encode-xs-perl using aptitude by running the following command:

sudo aptitude -y install liburl-encode-xs-perl

How To Uninstall liburl-encode-xs-perl on Kali Linux

To uninstall only the liburl-encode-xs-perl package we can use the following command:

sudo apt-get remove liburl-encode-xs-perl

Uninstall liburl-encode-xs-perl And Its Dependencies

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

sudo apt-get -y autoremove liburl-encode-xs-perl

Remove liburl-encode-xs-perl Configurations and Data

To remove liburl-encode-xs-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge liburl-encode-xs-perl

Remove liburl-encode-xs-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge liburl-encode-xs-perl

Dependencies

liburl-encode-xs-perl have the following dependencies:

References

Summary

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