Last active
January 4, 2016 08:19
-
-
Save nsahoo/8594544 to your computer and use it in GitHub Desktop.
Monaco font
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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