Ubuntu Tutorial

How To Install lcdf-typetools on Ubuntu

Posted on April 1, 2023  (Last modified on May 20, 2023 )
3 minutes  • 598 words

Introduction

In this tutorial we learn how to install lcdf-typetools on Ubuntu.

What is lcdf-typetools

lcdf-typetools is:

LCDF Typetools comprises several programs for manipulating PostScript Type 1, Type 1 multiple master, and OpenType fonts.

Programs to manipulate OpenType, multiple-master, and Type 1 fonts:

LCDF-TypeTools also includes the multiple-master font tools allowing you to use multiple-master fonts with programs that require single-master fonts (afm2tfm, ps2pk, fontinst, etc.). Both programs work fine with fonts that contain intermediate masters (e.g., Adobe Jenson MM and Adobe Kepler MM).

LCDF stands for Little Cambridgeport Design Factory.

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

Install lcdf-typetools Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install lcdf-typetools using apt-get by running the following command:

sudo apt-get -y install lcdf-typetools

Install lcdf-typetools Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install lcdf-typetools

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

sudo aptitude -y install lcdf-typetools

How To Uninstall lcdf-typetools on Ubuntu

To uninstall only the lcdf-typetools package we can use the following command:

sudo apt-get remove lcdf-typetools

Uninstall lcdf-typetools And Its Dependencies

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

sudo apt-get -y autoremove lcdf-typetools

Remove lcdf-typetools Configurations and Data

To remove lcdf-typetools configuration and data from Ubuntu we can use the following command:

sudo apt-get -y purge lcdf-typetools

Remove lcdf-typetools configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge lcdf-typetools

Dependencies

lcdf-typetools have the following dependencies:

References

Summary

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

Follow us

We provides various tutorials about Ubuntu