How To Install libmodule-manifest-skip-perl on Kali Linux

In this tutorial we learn how to install libmodule-manifest-skip-perl on Kali Linux. libmodule-manifest-skip-perl is MANIFEST.SKIP management for Perl modules

Introduction

In this tutorial we learn how to install libmodule-manifest-skip-perl on Kali Linux.

What is libmodule-manifest-skip-perl

libmodule-manifest-skip-perl is:

Module::Manifest::Skip is mostly intended for module packaging frameworks to share a common, up-to-date “MANIFEST.SKIP” base. For example, Module::Install::ManifestSkip, uses this module to get the actual SKIP content. However this module may be useful for any module author.

CPAN module authors use a MANIFEST.SKIP file to exclude certain well known files from getting put into a generated MANIFEST file, which would cause them to go into the final distribution package.

The packaging tools try to automatically skip things for you, but if you add one of your own entries, you have to add all the common ones yourself. This module attempts to make all of this boring process as simple and reliable as possible.

Module::Manifest::Skip can create or update a MANIFEST.SKIP file for you. You can add your own entries, and it will leave them alone. You can even tell it to not skip certain entries that it normally skips, although this is rarely needed.

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

sudo apt-get -y install libmodule-manifest-skip-perl

Install libmodule-manifest-skip-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libmodule-manifest-skip-perl using apt by running the following command:

sudo apt -y install libmodule-manifest-skip-perl

Install libmodule-manifest-skip-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 libmodule-manifest-skip-perl using aptitude by running the following command:

sudo aptitude -y install libmodule-manifest-skip-perl

How To Uninstall libmodule-manifest-skip-perl on Kali Linux

To uninstall only the libmodule-manifest-skip-perl package we can use the following command:

sudo apt-get remove libmodule-manifest-skip-perl

Uninstall libmodule-manifest-skip-perl And Its Dependencies

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

sudo apt-get -y autoremove libmodule-manifest-skip-perl

Remove libmodule-manifest-skip-perl Configurations and Data

To remove libmodule-manifest-skip-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libmodule-manifest-skip-perl

Remove libmodule-manifest-skip-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libmodule-manifest-skip-perl

Dependencies

libmodule-manifest-skip-perl have the following dependencies:

References

Summary

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