{"id":1674,"date":"2021-12-16T13:27:51","date_gmt":"2021-12-16T10:27:51","guid":{"rendered":"https:\/\/files2.tojikon.net\/files-cloud\/2021\/03\/17\/ubuntu-install-fonts-guide\/https:\/\/files2.tojikon.net\/files-cloud\/2021\/03\/17\/ubuntu-install-fonts-guide\/"},"modified":"2021-12-16T13:27:51","modified_gmt":"2021-12-16T10:27:51","slug":"ubuntu-install-fonts-guide","status":"publish","type":"post","link":"https:\/\/tojikon.net\/en\/1674-ubuntu-install-fonts-guide\/","title":{"rendered":"Ubuntu: install fonts [Guide]"},"content":{"rendered":"<section id=\"related_posts\">\n<div class=\"block-head\">\n<h3>Related Articles<\/h3>\n<\/div>\n<\/section>\n<p>Have a favorite font you want to install on your Ubuntu PC but can\u2019t quite figure it out? We can help! Follow along with this guide as we show you how to install fonts on Ubuntu!<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-397453 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/ubuntu-install-fonts-guide.png\" alt=\"Ubuntu install fonts\" width=\"1200\" height=\"620\"\/><\/p>\n<h2>Ubuntu: install fonts \u2013 Manual installation\u00a0<\/h2>\n<p>If you\u2019ve found a font online you\u2019d like to use on Ubuntu, the only way to get it working is with a manual installation. Manually installing fonts on Linux isn\u2019t as tricky on Linux as it sounds. All you need to do is download the font, extract it from the archive, and place it in the correct directory.\u00a0<\/p>\n<p>To start the installation of a font on your Ubuntu Linux PC, open up a terminal window. To open up a terminal window on the Ubuntu desktop, press\u00a0<strong>Ctrl + Alt + T\u00a0<\/strong>on the keyboard or search for \u201cTerminal\u201d in the app menu.\u00a0<\/p>\n<p>Once the terminal window is open and ready to use, follow the installation instructions outlined below that corresponds with your preferred installation method.<\/p>\n<h3>Install fonts per-user<\/h3>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-397453 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/ubuntu-install-fonts-guide.png\" alt=\"\" width=\"1200\" height=\"620\"\/><\/p>\n<p>The best (and easiest) way to get fonts working when installing manually is by setting them up on a per-user basis. By setting up your fonts per-user, you won\u2019t have to tinker with system-level files.\u00a0<\/p>\n<p>To start installing custom fonts on a per-user basis (non-root), you will need to download a font. In this guide, we will use the Bilbo font, which is available at fontesk.com\u00a0for free.\u00a0<\/p>\n<p>Note: want to download fonts to your Ubuntu PC but don\u2019t know where to look? Try fontesk.com.<\/p>\n<p>After downloading the font to your Linux PC, use the <strong>mkdir\u00a0<\/strong>command and create a new folder in your home directory with the name \u201c.fonts.\u201d<\/p>\n<pre>\nmkdir -p ~\/.fonts\n<\/pre>\n<p>Once you\u2019ve created your new font folder, move to the \u201cDownloads\u201d directory using the\u00a0<strong>CD\u00a0<\/strong>command.\u00a0<\/p>\n<pre>\ncd ~\/Downloads\n<\/pre>\n<p>From here, you must extract the contents of the archive in which the font file was distributed in. With Bilbo, the archive is a ZIP archive, so we will need to make use of\u00a0<strong>unzip\u00a0<\/strong>to extract it.<\/p>\n<p>Note: if you are installing another font from Fontesk, be sure to replace \u201cBilbo.zip\u201d below with the name of the Zip archive you need to extract.<\/p>\n<pre>\nunzip bilbo.zip\n<\/pre>\n<p>After unzipping Bilbo, a \u201cfonts\u201d folder will appear in the \u201cDownloads\u201d directory. Enter it by making use of the\u00a0<strong>CD\u00a0<\/strong>command.<\/p>\n<pre>\ncd fonts\/\n<\/pre>\n<p>Inside of the \u201cfonts\u201d folder is a \u201cttf\u201d sub-folder. In this \u201cttf\u201d subfolder resides the Bilbo font file. Enter it with the\u00a0<strong>CD\u00a0<\/strong>command.<\/p>\n<pre>\ncd ttf\/\n<\/pre>\n<p>Take the Bilbo font file and install it to the ~\/.fonts folder you created earlier using the <strong>mv\u00a0<\/strong>command.<\/p>\n<pre>\nmv Bilbo-Regular.ttf ~\/.fonts\/\n<\/pre>\n<h3>Install fonts system-wide<\/h3>\n<p>Installing fonts system-wide means placing font files inside of <code>\/usr\/local\/share\/fonts\/<\/code> rather than ~\/.fonts. To start the installation, you will need to download a font. Just like in the per-user installation, we will be using the Bilbo font.<\/p>\n<p>Download the font to your Ubuntu PC. When the download is complete, use the\u00a0<strong>CD\u00a0<\/strong>command to move into the \u201cDownloads\u201d directory.<\/p>\n<pre>\ncd ~\/Downloads\n<\/pre>\n<p>Once inside the \u201cDownloads\u201d folder, you will need to extract the archive contents in which the font was distributed in. The Bilbo font is distributed via a ZIP archive, so we will extract using <strong>unzip<\/strong>.<\/p>\n<p>To unzip the archive, use the command below.<\/p>\n<pre>\nunzip bilbo.zip\n<\/pre>\n<p>After extracting the ZIP archive, you will see a \u201cfonts\u201d folder appear in the \u201cDownloads\u201d directory. Using the\u00a0<strong>CD\u00a0<\/strong>command, move into the folder.<\/p>\n<pre>\ncd fonts\/\n<\/pre>\n<p>Inside the \u201cfonts\u201d folder, enter the \u201cttf\u201d folder, where the Bilbo font file is located.<\/p>\n<pre>\ncd ttf\/\n<\/pre>\n<p>Finally, install the Bilbo font file system-wide with the\u00a0<strong>mv\u00a0<\/strong>command below.<\/p>\n<pre>\nmv Bilbo-Regular.ttf \/usr\/local\/share\/fonts\/\n<\/pre>\n<p>Need to preview fonts? You can preview them from Terminal.<\/p>\n<h2>Ubuntu: install fonts \u2013 Font Downloader<\/h2>\n<p>If you don\u2019t want to deal with manually downloading fonts on Ubuntu and installing them via the command-line, consider checking out the Font Downloader app. It\u2019s a simple Flathub application that can download and install a wide variety of fonts to Ubuntu.<\/p>\n<p>To get started with Font Downloader, please follow our guide on how to set up the Flathub runtime. You need the runtime to install Flatpak packages on Ubuntu. Once it is installed, enter the two commands below to get Font Downloader working.<\/p>\n<pre>\nflatpak remote-add --if-not-exists flathub https:\/\/flathub.org\/repo\/flathub.flatpakrepo\nflatpak install flathub org.gustavoperedo.FontDownloader\n<\/pre>\n<p>With Font Downloader installed, open it by searching for \u201cFont Downloader\u201d in the app menu. Once it is open, follow the step-by-step instructions below to install fonts.<\/p>\n<p><strong>Step 1:<\/strong> Look in the left-hand sidebar in Font Downloader for a font you\u2019d like to install. There\u2019s a handful of fonts to choose from.<\/p>\n<p><strong>Step 2:<\/strong> When you\u2019ve found the font you wish to install on your computer, click on it in the list with the mouse.\u00a0<\/p>\n<p><strong>Step 3:<\/strong> Find the \u201cInstall\u201d button, and click on it with the mouse. By selecting this button, you will install the font on your computer.\u00a0<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignnone wp-image-397458 size-full\" src=\"https:\/\/files2.tojikon.net\/files-cloud\/wp-content\/uploads\/2021\/12\/ubuntu-install-fonts-guide-1.png\" alt=\"\" width=\"1200\" height=\"462\"\/><\/p>\n<p>Repeat these three steps to install as many fonts as you want to Ubuntu via Font Downloader.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Related Articles Have a favorite font you want to install on your Ubuntu PC but can\u2019t quite figure it out? We can help! Follow along with this guide as we show you how to install fonts on Ubuntu! Ubuntu: install fonts \u2013 Manual installation\u00a0 If you\u2019ve found a font online you\u2019d like to use on &hellip;<\/p>\n","protected":false},"author":1,"featured_media":1675,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[21],"tags":[33],"_links":{"self":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts\/1674"}],"collection":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/comments?post=1674"}],"version-history":[{"count":0,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/posts\/1674\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/media\/1675"}],"wp:attachment":[{"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/media?parent=1674"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/categories?post=1674"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tojikon.net\/en\/wp-json\/wp\/v2\/tags?post=1674"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}