How To Install libdata-pond-perl on Kali Linux

In this tutorial we learn how to install libdata-pond-perl on Kali Linux. libdata-pond-perl is Perl-based open notation for data module

Introduction

In this tutorial we learn how to install libdata-pond-perl on Kali Linux.

What is libdata-pond-perl

libdata-pond-perl is:

Data::Pond is concerned with representing data structures in a textual notation known as “Pond” (Perl-based open notation for data). The notation is a strict subset of Perl expression syntax, but is intended to have language-independent use. It is similar in spirit to JSON, which is based on JavaScript, but Pond represents fewer data types directly.

The data that can be represented in Pond consist of strings (of characters), arrays, and string-keyed hashes. Arrays and hashes can recursively (but not cyclically) contain any of these kinds of data. This does not cover the full range of data types that Perl or other languages can handle, but is intended to be a limited, fixed repertoire of data types that many languages can readily process. It is intended that more complex data can be represented using these basic types. The arrays and hashes provide structuring facilities (ordered and unordered collections, respectively), and strings are a convenient way to represent atomic data.

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

sudo apt-get -y install libdata-pond-perl

Install libdata-pond-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libdata-pond-perl

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

sudo aptitude -y install libdata-pond-perl

How To Uninstall libdata-pond-perl on Kali Linux

To uninstall only the libdata-pond-perl package we can use the following command:

sudo apt-get remove libdata-pond-perl

Uninstall libdata-pond-perl And Its Dependencies

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

sudo apt-get -y autoremove libdata-pond-perl

Remove libdata-pond-perl Configurations and Data

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

sudo apt-get -y purge libdata-pond-perl

Remove libdata-pond-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libdata-pond-perl

Dependencies

libdata-pond-perl have the following dependencies:

References

Summary

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