How To Install libdebian-package-html-perl on Ubuntu 18.04

In this tutorial we learn how to install libdebian-package-html-perl on Ubuntu 18.04. libdebian-package-html-perl is generates HTML from a Debian source/binary package

Introduction

In this tutorial we learn how to install libdebian-package-html-perl on Ubuntu 18.04.

What is libdebian-package-html-perl

libdebian-package-html-perl is:

This module outputs a webpage using HTML::Template templates which resumes the information of a normal build environment for a package in Debian (source files, binary packages and changelogs) using Linda/Lintian for sanity checks. It is useful for making unified presentation webpages for those packages which are being sponsorized by someone in Debian.

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

sudo apt-get -y install libdebian-package-html-perl

Install libdebian-package-html-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libdebian-package-html-perl

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

sudo aptitude -y install libdebian-package-html-perl

How To Uninstall libdebian-package-html-perl on Ubuntu 18.04

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

sudo apt-get remove libdebian-package-html-perl

Uninstall libdebian-package-html-perl And Its Dependencies

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

sudo apt-get -y autoremove libdebian-package-html-perl

Remove libdebian-package-html-perl Configurations and Data

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

sudo apt-get -y purge libdebian-package-html-perl

Remove libdebian-package-html-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libdebian-package-html-perl

References

Summary

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