How To Install fonts-unfonts-extra on Debian 9

In this tutorial we learn how to install fonts-unfonts-extra on Debian 9. fonts-unfonts-extra is Un series Korean TrueType fonts (extra)

Introduction

In this tutorial we learn how to install fonts-unfonts-extra on Debian 9.

What is fonts-unfonts-extra

fonts-unfonts-extra is:

This is a set of Korean TrueType fonts. These fonts were made from the HLaTeX’s PostScript fonts and modified slightly.

They package has the less common font families. In most cases, ttf-unfonts-core package is enough for daily use.

There are three methods to install fonts-unfonts-extra on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install fonts-unfonts-extra Using apt-get

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

sudo apt-get update

After updating apt database, We can install fonts-unfonts-extra using apt-get by running the following command:

sudo apt-get -y install fonts-unfonts-extra

Install fonts-unfonts-extra Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install fonts-unfonts-extra using apt by running the following command:

sudo apt -y install fonts-unfonts-extra

Install fonts-unfonts-extra 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install fonts-unfonts-extra using aptitude by running the following command:

sudo aptitude -y install fonts-unfonts-extra

How To Uninstall fonts-unfonts-extra on Debian 9

To uninstall only the fonts-unfonts-extra package we can use the following command:

sudo apt-get remove fonts-unfonts-extra

Uninstall fonts-unfonts-extra And Its Dependencies

To uninstall fonts-unfonts-extra and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove fonts-unfonts-extra

Remove fonts-unfonts-extra Configurations and Data

To remove fonts-unfonts-extra configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge fonts-unfonts-extra

Remove fonts-unfonts-extra configuration, data, and all of its dependencies

We can use the following command to remove fonts-unfonts-extra configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge fonts-unfonts-extra

Dependencies

fonts-unfonts-extra have the following dependencies:

References

Summary

In this tutorial we learn how to install fonts-unfonts-extra package on Debian 9 using different package management tools: apt, apt-get and aptitude.