How to install custom fonts on Linux
fc-list# list available fonts, if command not found on Amazon Linux 2023, runsudo dnf install fontconfigunzip basier.zip# basier.zip is what we downloaded from the internet (e.g. www.fontsquirrel.com/)sudo mv BasierCircle-Regular.otf /usr/share/fonts && sudo mv BasierSquare-Regular.otf /usr/share/fonts# move the unziped files(either *.ttf or .otf) into /urs/share/fonts/fc-list | grep Basierverify that the new fonts are installedfc-cache -r# update font config cache
Copied to clipboard
Share this post
Related Posts
Linux Commands Cheat Sheet
Linux commands cheat sheet: comprehensive reference covering basic commands, man pages, and help options.
Linux Commands Use Cases
Linux commands: zip/unzip operations, kernel version checking, GUI system control, head/tail file viewing.
Deploy Django on Ubuntu with Caddy && Gunicorn
Django deployment on Ubuntu with Caddy and Gunicorn: Gunicorn installation, worker configuration, Caddy reverse proxy.
Add SSL Certificate for Django Deployed with Apache on Ubuntu
Add SSL certificate to Django Apache deployment: ZeroSSL free certificates, SCP file transfer, Apache SSL config.