Monaco is the default font in the iTerm terminal for Mac OS X. How can I install it on Ubuntu?
Asked
Active
Viewed 6.1k times
3 Answers
38
Github user cstrap
has a repository with a simple install script that will download and install the font.
Just run the command
curl -kL https://raw.github.com/cstrap/monaco-font/master/install-font-ubuntu.sh | bash

sjakobi
- 869
- 1
- 8
- 15
29
- Download it from http://www.gringod.com/wp-upload/software/Fonts/Monaco_Linux.ttf
- Double click on the file. A font manager opens.
- Click on "Install Font"

Martin Thoma
- 19,277
-
4Actually, you only need to move the downloaded file to
~/.fonts/
, and commandsudo fc-cache -fv
from the Bash command line, in order to rebuild the font cache. (No font manager opened when I clicked the downloaded file, but I'm using Xubuntu, which might account for that.) – Teemu Leisti Feb 25 '17 at 17:13
10
I installed the Monaco font in Ubuntu 16.04 by doing:
- Download it from https://github.com/hbin/top-programming-fonts/raw/master/Monaco-Linux.ttf
- Copy the downloaded font into
~/.fonts/
- Run
sudo fc-cache -fv

greuze
- 219
-
no need to run mysterious scripts from the web, just two simple commands... – opensas Apr 17 '18 at 03:37
-
As system-wide fonts are stored under /usr/share/fonts, symmetrically the XDG-standard directory to place user fonts is: ~/.local/share/fonts (you just replace /usr with ~/.local) – Paulo Marcel Coelho Aragão Jun 30 '18 at 21:16
-
wget https://raw.github.com/cstrap/monaco-font/master/install-font-ubuntu.sh
. – Edward Garson Mar 27 '20 at 14:24