How To Install fonts-sora on Debian 12

Learn how to install fonts-sora on Debian 12 with this tutorial. fonts-sora is Sora typeface

Introduction

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

What is fonts-sora

fonts-sora is:

This is a typeface family commissioned for the Sora decentralized autonomous economy as a custom solution for branding and interface design. Soramitsu, the developer of Sora, is a boutique Japanese technology company specializing in developing blockchain technologies and well-known for creating the first central bank digital currency using Hyperledger Iroha for the central bank of Cambodia. Sora, meaning sky in Japanese, is focused on empowering projects that benefit society by delivering new goods and services.

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

sudo apt-get -y install fonts-sora

Install fonts-sora Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install fonts-sora

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

sudo aptitude -y install fonts-sora

How To Uninstall fonts-sora on Debian 12

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

sudo apt-get remove fonts-sora

Uninstall fonts-sora And Its Dependencies

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

sudo apt-get -y autoremove fonts-sora

Remove fonts-sora Configurations and Data

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

sudo apt-get -y purge fonts-sora

Remove fonts-sora configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge fonts-sora

Dependencies

fonts-sora have the following dependencies:

References

Summary

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