How To Install libtie-dxhash-perl on Ubuntu 18.04

In this tutorial we learn how to install libtie-dxhash-perl on Ubuntu 18.04. libtie-dxhash-perl is Perl module that keeps insertion order in hash

Introduction

In this tutorial we learn how to install libtie-dxhash-perl on Ubuntu 18.04.

What is libtie-dxhash-perl

libtie-dxhash-perl is:

Tie::DxHash implements a hash which preserves insertion order and allows duplicate keys.

Tie::DxHash works by storing the hash data in an array of hash references (containing the key/value pairs). This preserves insertion order. A separate set of iterators (one per distinct key) keeps track of the last retrieved value for a given key, thus allowing the successive retrieval of multiple values for the same key to work as expected.

Tie::DxHash was originally written to facilitate the use of more complex mod_rewrite rules in Apache configuration files written with Perl Sections.

There are three methods to install libtie-dxhash-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libtie-dxhash-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 libtie-dxhash-perl using apt-get by running the following command:

sudo apt-get -y install libtie-dxhash-perl

Install libtie-dxhash-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libtie-dxhash-perl

Install libtie-dxhash-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libtie-dxhash-perl using aptitude by running the following command:

sudo aptitude -y install libtie-dxhash-perl

How To Uninstall libtie-dxhash-perl on Ubuntu 18.04

To uninstall only the libtie-dxhash-perl package we can use the following command:

sudo apt-get remove libtie-dxhash-perl

Uninstall libtie-dxhash-perl And Its Dependencies

To uninstall libtie-dxhash-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libtie-dxhash-perl

Remove libtie-dxhash-perl Configurations and Data

To remove libtie-dxhash-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libtie-dxhash-perl

Remove libtie-dxhash-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libtie-dxhash-perl

References

Summary

In this tutorial we learn how to install libtie-dxhash-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.