How To Install fonts-national-park on Debian 12

Learn how to install fonts-national-park on Debian 12 with this tutorial. fonts-national-park is Typeface designed to mimic the US National Park service signs

Introduction

In this tutorial we learn how to install fonts-national-park on Debian 12.

What is fonts-national-park

fonts-national-park is:

A typeface designed to mimic the National Park service signs that are carved using a router bit. Offered in four weights.

There are three methods to install fonts-national-park on Debian 12. 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-national-park 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-national-park using apt-get by running the following command:

sudo apt-get -y install fonts-national-park

Install fonts-national-park Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install fonts-national-park

Install fonts-national-park 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-national-park using aptitude by running the following command:

sudo aptitude -y install fonts-national-park

How To Uninstall fonts-national-park on Debian 12

To uninstall only the fonts-national-park package we can use the following command:

sudo apt-get remove fonts-national-park

Uninstall fonts-national-park And Its Dependencies

To uninstall fonts-national-park and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove fonts-national-park

Remove fonts-national-park Configurations and Data

To remove fonts-national-park configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge fonts-national-park

Remove fonts-national-park configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge fonts-national-park

Dependencies

fonts-national-park have the following dependencies:

References

Summary

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