Skip to content

Instantly share code, notes, and snippets.

@nsahoo
Last active January 4, 2016 08:19
Show Gist options
  • Save nsahoo/8594544 to your computer and use it in GitHub Desktop.
Save nsahoo/8594544 to your computer and use it in GitHub Desktop.
Monaco font
# Get the Monaco font for linux
wget http://www.gringod.com/wp-upload/software/Fonts/Monaco_Linux.ttf
# If wget is NOT installed, install it by
sudo apt-get install wget
# Install the font
sudo mkdir /usr/share/fonts/truetype
sudo cp Monaco_Linux.ttf /usr/share/fonts/truetype/
cd /usr/share/fonts/truetype
sudo mkfontscale
sudo mkfontdir
sudo fc-cache
# This should do in most systems. If it does not work, follow the following additional steps.
sudo chkfontpath --add /usr/share/fonts/truetype
sudo fc-cache -fv
# If it still does not work, restart your X server.
sudo /etc/rc.d/init.d/xfs restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment