How To Install libtenjin-perl on Kali Linux

In this tutorial we learn how to install libtenjin-perl on Kali Linux. libtenjin-perl is fast templating engine with support for embedded Perl

Introduction

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

What is libtenjin-perl

libtenjin-perl is:

Tenjin is a very fast and full-featured templating engine, implemented in several programming languages, among them Perl.

The Perl version of Tenjin supports embedded Perl code, nestable layout template, inclusion of other templates inside a template, capturing parts of or the entire template output, file and memory caching, template arguments and preprocessing.

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

sudo apt-get -y install libtenjin-perl

Install libtenjin-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libtenjin-perl

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

sudo aptitude -y install libtenjin-perl

How To Uninstall libtenjin-perl on Kali Linux

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

sudo apt-get remove libtenjin-perl

Uninstall libtenjin-perl And Its Dependencies

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

sudo apt-get -y autoremove libtenjin-perl

Remove libtenjin-perl Configurations and Data

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

sudo apt-get -y purge libtenjin-perl

Remove libtenjin-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libtenjin-perl

Dependencies

libtenjin-perl have the following dependencies:

References

Summary

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