How To Install libapp-cell-perl on Kali Linux

In this tutorial we learn how to install libapp-cell-perl on Kali Linux. libapp-cell-perl is configuration, error-handling, localization, and logging framework

Introduction

In this tutorial we learn how to install libapp-cell-perl on Kali Linux.

What is libapp-cell-perl

libapp-cell-perl is:

App::CELL is the Configuration, Error-handling, Localization, and Logging (CELL) framework for applications written in Perl.

In the author’s experience, applications written for “users” (however that term may be defined) frequently need to:

  • be configurable by the user or site administrator
  • handle errors robustly, without hangs and crashes
  • potentially display messages in various languages
  • log various types of messages to syslog

Since these basic functions seem to work well together, CELL is designed to provide them in an integrated, well-documented, straightforward, and reusable package.

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

sudo apt-get -y install libapp-cell-perl

Install libapp-cell-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libapp-cell-perl

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

sudo aptitude -y install libapp-cell-perl

How To Uninstall libapp-cell-perl on Kali Linux

To uninstall only the libapp-cell-perl package we can use the following command:

sudo apt-get remove libapp-cell-perl

Uninstall libapp-cell-perl And Its Dependencies

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

sudo apt-get -y autoremove libapp-cell-perl

Remove libapp-cell-perl Configurations and Data

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

sudo apt-get -y purge libapp-cell-perl

Remove libapp-cell-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libapp-cell-perl

Dependencies

libapp-cell-perl have the following dependencies:

References

Summary

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