How To Install liblog-any-perl on Kali Linux

In this tutorial we learn how to install liblog-any-perl on Kali Linux. liblog-any-perl is Perl module to log messages safely and efficiently

Introduction

In this tutorial we learn how to install liblog-any-perl on Kali Linux.

What is liblog-any-perl

liblog-any-perl is:

Log::Any allows CPAN modules to safely and efficiently log messages, while letting the application choose (or decline to choose) a logging mechanism such as Log::Dispatch or Log::Log4perl.

Log::Any has a very tiny footprint and no dependencies beyond Perl 5.6, which makes it appropriate for even small CPAN modules to use. It defaults to ’null’ logging activity, so a module can safely log without worrying about whether the application has chosen (or will ever choose) a logging mechanism.

The application, in turn, may choose one or more logging mechanisms via Log::Any::Adapter.

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

sudo apt-get -y install liblog-any-perl

Install liblog-any-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install liblog-any-perl

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

sudo aptitude -y install liblog-any-perl

How To Uninstall liblog-any-perl on Kali Linux

To uninstall only the liblog-any-perl package we can use the following command:

sudo apt-get remove liblog-any-perl

Uninstall liblog-any-perl And Its Dependencies

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

sudo apt-get -y autoremove liblog-any-perl

Remove liblog-any-perl Configurations and Data

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

sudo apt-get -y purge liblog-any-perl

Remove liblog-any-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge liblog-any-perl

Dependencies

liblog-any-perl have the following dependencies:

References

Summary

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