How To Install fonts-ubuntu-title on Kali Linux
Introduction
In this tutorial we learn how to install fonts-ubuntu-title
on Kali Linux.
What is fonts-ubuntu-title
fonts-ubuntu-title is:
This font was used to create the lettering of the Ubuntu logo, it was made available by Canonical under the OFL 1.1 and the GPL 2 with font exception to make rebranding of Ubuntu easier and to provide LoCos (Language communities) with a font to create material related to Ubuntu in their own language.
It is no longer used in the Ubuntu logo. It was in use between 2004 and 2010.
There are three methods to install fonts-ubuntu-title
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-ubuntu-title 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-ubuntu-title
using apt-get
by running the following command:
sudo apt-get -y install fonts-ubuntu-title
Install fonts-ubuntu-title Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install fonts-ubuntu-title
using apt
by running the following command:
sudo apt -y install fonts-ubuntu-title
Install fonts-ubuntu-title 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-ubuntu-title
using aptitude
by running the following command:
sudo aptitude -y install fonts-ubuntu-title
How To Uninstall fonts-ubuntu-title on Kali Linux
To uninstall only the fonts-ubuntu-title
package we can use the following command:
sudo apt-get remove fonts-ubuntu-title
Uninstall fonts-ubuntu-title And Its Dependencies
To uninstall fonts-ubuntu-title
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove fonts-ubuntu-title
Remove fonts-ubuntu-title Configurations and Data
To remove fonts-ubuntu-title
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge fonts-ubuntu-title
Remove fonts-ubuntu-title configuration, data, and all of its dependencies
We can use the following command to remove fonts-ubuntu-title
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fonts-ubuntu-title
Dependencies
fonts-ubuntu-title have the following dependencies:
References
Summary
In this tutorial we learn how to install fonts-ubuntu-title
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.