How To Install fonts-yanone-kaffeesatz on Kali Linux

In this tutorial we learn how to install fonts-yanone-kaffeesatz on Kali Linux. fonts-yanone-kaffeesatz is Font in four weights, reminiscent of 1920s coffee house typography

Introduction

In this tutorial we learn how to install fonts-yanone-kaffeesatz on Kali Linux.

What is fonts-yanone-kaffeesatz

fonts-yanone-kaffeesatz is:

Yanone Kaffeesatz was first published in 2004. Its Bold is reminiscent of 1920s coffee house typography, while the rather thin fonts bridge the gap to present times. You can witness Kaffeesatz use on German fresh-water gyms, Dubai mall promos and New Zealand McDonalds ads. And of course on coffee and foodstuff packaging and cafe design around the globe.

In 2010 it was decided to be re-released under the SIL Open Font License to make it possible to include in software bundles or web font services like Googles Font Directory.

There are three methods to install fonts-yanone-kaffeesatz on Kali Linux. 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-yanone-kaffeesatz 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-yanone-kaffeesatz using apt-get by running the following command:

sudo apt-get -y install fonts-yanone-kaffeesatz

Install fonts-yanone-kaffeesatz Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install fonts-yanone-kaffeesatz

Install fonts-yanone-kaffeesatz Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install fonts-yanone-kaffeesatz

How To Uninstall fonts-yanone-kaffeesatz on Kali Linux

To uninstall only the fonts-yanone-kaffeesatz package we can use the following command:

sudo apt-get remove fonts-yanone-kaffeesatz

Uninstall fonts-yanone-kaffeesatz And Its Dependencies

To uninstall fonts-yanone-kaffeesatz and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove fonts-yanone-kaffeesatz

Remove fonts-yanone-kaffeesatz Configurations and Data

To remove fonts-yanone-kaffeesatz configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge fonts-yanone-kaffeesatz

Remove fonts-yanone-kaffeesatz configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge fonts-yanone-kaffeesatz

Dependencies

fonts-yanone-kaffeesatz have the following dependencies:

References

Summary

In this tutorial we learn how to install fonts-yanone-kaffeesatz package on Kali Linux using different package management tools: apt, apt-get and aptitude.