Install Fonts

I explain the way to install fonts. You can intall fonts using apt command as follows. This is examples of Japanese fonts. You need to search for the fonts you need by yourself using search engines, etc. I tried this article on Ubuntu 18.

# Install Fonts
apt install -y fonts-ipafont

The fonts is installed on /usr/share/fonts directory. You can see the fonts using find command.

# Find founts
find /usr/share/fonts

You can see the fonts you want to see using grep command with find command.

# See the fonts you want to see
find /usr/share/fonts | grep ipa

An example of the output:

/usr/share/fonts/opentype/ipafont-mincho
/usr/share/fonts/opentype/ipafont-mincho/ipam.ttf
/usr/share/fonts/opentype/ipafont-mincho/ipamp.ttf
/usr/share/fonts/opentype/ipafont-gothic
/usr/share/fonts/opentype/ipafont-gothic/ipagp.ttf
/usr/share/fonts/opentype/ipafont-gothic/ipag.ttf

The files which have the extension ".ttf" are font files.

Associated Information