How To Install fonts-yusei-magic on Ubuntu 22.04
Introduction
In this tutorial we learn how to install fonts-yusei-magic on Ubuntu 22.04.
What is fonts-yusei-magic
fonts-yusei-magic is:
Yusei Magic is a font based on handwritten letters written with permanent marker. It has thick vertical strokes and thin horizontal strokes, so it is highly visible. The design of the letters has both the strength of bold lines and the softness of spaciousness. Highly recommended for handwriting on blackboards and pop art designs.
This font includes Google Latin Core, Hiragana, Katakana, JIS level 1, level 2 and IBM Extended Kanji (Han) glyphs.
See https://github.com/tanukifont/YuseiMagic
There are three methods to install fonts-yusei-magic on Ubuntu 22.04. 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-yusei-magic 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-yusei-magic using apt-get by running the following command:
sudo apt-get -y install fonts-yusei-magic
Install fonts-yusei-magic Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install fonts-yusei-magic using apt by running the following command:
sudo apt -y install fonts-yusei-magic
Install fonts-yusei-magic 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 fonts-yusei-magic using aptitude by running the following command:
sudo aptitude -y install fonts-yusei-magic
How To Uninstall fonts-yusei-magic on Ubuntu 22.04
To uninstall only the fonts-yusei-magic package we can use the following command:
sudo apt-get remove fonts-yusei-magic
Uninstall fonts-yusei-magic And Its Dependencies
To uninstall fonts-yusei-magic and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove fonts-yusei-magic
Remove fonts-yusei-magic Configurations and Data
To remove fonts-yusei-magic configuration and data from Ubuntu 22.04 we can use the following command:
sudo apt-get -y purge fonts-yusei-magic
Remove fonts-yusei-magic configuration, data, and all of its dependencies
We can use the following command to remove fonts-yusei-magic configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fonts-yusei-magic
References
Summary
In this tutorial we learn how to install fonts-yusei-magic package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.