How To Install libtitanium-perl on Ubuntu 18.04

In this tutorial we learn how to install libtitanium-perl on Ubuntu 18.04. libtitanium-perl is strong, lightweight web application framework for Perl

Introduction

In this tutorial we learn how to install libtitanium-perl on Ubuntu 18.04.

What is libtitanium-perl

libtitanium-perl is:

Titanium is solid and mature. While it has a new name, the reality is that Titanium is simply a more user-friendly packaging of the mature CGI::Application framework and some useful plugins.

Titanium is lightweight; it has a light core and the plugins it uses employ lazy-loading whenever possible. It runs well in a plain CGI environment and provides excellent performance in a persistent environment such as FastCGI or mod_perl.

Applications are compatible with plugins for CGI::Application, so you can add additional features as your needs evolve.

There are three methods to install libtitanium-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libtitanium-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 libtitanium-perl using apt-get by running the following command:

sudo apt-get -y install libtitanium-perl

Install libtitanium-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libtitanium-perl

Install libtitanium-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libtitanium-perl

How To Uninstall libtitanium-perl on Ubuntu 18.04

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

sudo apt-get remove libtitanium-perl

Uninstall libtitanium-perl And Its Dependencies

To uninstall libtitanium-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libtitanium-perl

Remove libtitanium-perl Configurations and Data

To remove libtitanium-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libtitanium-perl

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

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

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

References

Summary

In this tutorial we learn how to install libtitanium-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.