How To Install fonts-naver-d2coding on Ubuntu 18.04
Introduction
In this tutorial we learn how to install fonts-naver-d2coding on Ubuntu 18.04.
What is fonts-naver-d2coding
fonts-naver-d2coding is:
This package contains one Korean fixed width font family, D2Coding.
This is especially designed for programming, Based on Nanum BarunGothic font. The width of Korean glyphs is exactly dual spaced. And the shapes of alphabets, digits are symbols are more distinct.
There are three methods to install fonts-naver-d2coding on Ubuntu 18.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-naver-d2coding 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-naver-d2coding using apt-get by running the following command:
sudo apt-get -y install fonts-naver-d2coding
Install fonts-naver-d2coding Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install fonts-naver-d2coding using apt by running the following command:
sudo apt -y install fonts-naver-d2coding
Install fonts-naver-d2coding 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-naver-d2coding using aptitude by running the following command:
sudo aptitude -y install fonts-naver-d2coding
How To Uninstall fonts-naver-d2coding on Ubuntu 18.04
To uninstall only the fonts-naver-d2coding package we can use the following command:
sudo apt-get remove fonts-naver-d2coding
Uninstall fonts-naver-d2coding And Its Dependencies
To uninstall fonts-naver-d2coding and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove fonts-naver-d2coding
Remove fonts-naver-d2coding Configurations and Data
To remove fonts-naver-d2coding configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge fonts-naver-d2coding
Remove fonts-naver-d2coding configuration, data, and all of its dependencies
We can use the following command to remove fonts-naver-d2coding configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge fonts-naver-d2coding
References
Summary
In this tutorial we learn how to install fonts-naver-d2coding package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.