Just a note to self… To install fonts (in this example, the Arial family) on a Fedora system:
- Log in as root
- Change to the font storage directory:
cd /usr/share/fonts - Create a subdirectory to hold the Arial family of fonts:
mkdir arial - Copy the Arial fonts into that directory.
- Make the font files accessible systemwide:
chmod 0775 -R arial - Run fc-cache on the new directory to cache the new fonts:
fc-cache arial
That should be it…