How To Install libfont-ttf-perl on Ubuntu 18.04

In this tutorial we learn how to install libfont-ttf-perl on Ubuntu 18.04. libfont-ttf-perl is Perl module for TrueType font hacking

Introduction

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

What is libfont-ttf-perl

libfont-ttf-perl is:

Font::TTF module supports reading, processing and writing many different table formats for TrueType fonts. You can do almost anything with a TrueType font with this module.

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

sudo apt-get -y install libfont-ttf-perl

Install libfont-ttf-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libfont-ttf-perl

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

sudo aptitude -y install libfont-ttf-perl

How To Uninstall libfont-ttf-perl on Ubuntu 18.04

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

sudo apt-get remove libfont-ttf-perl

Uninstall libfont-ttf-perl And Its Dependencies

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

sudo apt-get -y autoremove libfont-ttf-perl

Remove libfont-ttf-perl Configurations and Data

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

sudo apt-get -y purge libfont-ttf-perl

Remove libfont-ttf-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libfont-ttf-perl

References

Summary

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