How To Install libpod-constants-perl on Kali Linux

In this tutorial we learn how to install libpod-constants-perl on Kali Linux. libpod-constants-perl is module for including constants from POD

Introduction

In this tutorial we learn how to install libpod-constants-perl on Kali Linux.

What is libpod-constants-perl

libpod-constants-perl is:

This module allows you to specify those constants that should be documented in your POD, and pull them out a run time in a fairly arbitrary fashion.

Pod::Constants uses Pod::Parser to do the parsing of the source file. It has to open the source file it is called from, and does so directly either by lookup in %INC or by assuming it is $0 if the caller is “main” (or it can’t find %INC{caller()})

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

sudo apt-get -y install libpod-constants-perl

Install libpod-constants-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libpod-constants-perl

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

sudo aptitude -y install libpod-constants-perl

How To Uninstall libpod-constants-perl on Kali Linux

To uninstall only the libpod-constants-perl package we can use the following command:

sudo apt-get remove libpod-constants-perl

Uninstall libpod-constants-perl And Its Dependencies

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

sudo apt-get -y autoremove libpod-constants-perl

Remove libpod-constants-perl Configurations and Data

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

sudo apt-get -y purge libpod-constants-perl

Remove libpod-constants-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libpod-constants-perl

Dependencies

libpod-constants-perl have the following dependencies:

References

Summary

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