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
Basic tmux Commands for Terminal Sessions
Learn the basic tmux commands to create, list, detach, reattach, rename, and remove terminal sessions.
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.