How To Install libcatalyst-action-renderview-perl on Kali Linux

In this tutorial we learn how to install libcatalyst-action-renderview-perl on Kali Linux. libcatalyst-action-renderview-perl is Sensible default end action for Catalyst

Introduction

In this tutorial we learn how to install libcatalyst-action-renderview-perl on Kali Linux.

What is libcatalyst-action-renderview-perl

libcatalyst-action-renderview-perl is:

Catalyst::Action::RenderView module implements a sensible default end action for Catalyst, which will forward to the first available view, unless $c->res->status is a 3xx code (redirection, not modified, etc.), 204 (no content), or $c->res->body has already been set. It also allows you to pass ‘dump_info=1’ to the url in order to force a debug screen, while in debug mode.

Catalyst is an elegant Model-View-Controller web application framework written in Perl.

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

sudo apt-get -y install libcatalyst-action-renderview-perl

Install libcatalyst-action-renderview-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libcatalyst-action-renderview-perl using apt by running the following command:

sudo apt -y install libcatalyst-action-renderview-perl

Install libcatalyst-action-renderview-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 libcatalyst-action-renderview-perl using aptitude by running the following command:

sudo aptitude -y install libcatalyst-action-renderview-perl

How To Uninstall libcatalyst-action-renderview-perl on Kali Linux

To uninstall only the libcatalyst-action-renderview-perl package we can use the following command:

sudo apt-get remove libcatalyst-action-renderview-perl

Uninstall libcatalyst-action-renderview-perl And Its Dependencies

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

sudo apt-get -y autoremove libcatalyst-action-renderview-perl

Remove libcatalyst-action-renderview-perl Configurations and Data

To remove libcatalyst-action-renderview-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libcatalyst-action-renderview-perl

Remove libcatalyst-action-renderview-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libcatalyst-action-renderview-perl

Dependencies

libcatalyst-action-renderview-perl have the following dependencies:

References

Summary

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