Created
September 3, 2013 10:11
-
-
Save grenade/6422031 to your computer and use it in GitHub Desktop.
Install Ubuntu fonts on Fedora / RedHat
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
sudo yum -y install ttmkfdir | |
wget http://font.ubuntu.com/download/ubuntu-font-family-0.80.zip | |
mkdir /tmp/ubuntu-font-family-0.80 | |
unzip -j ubuntu-font-family-0.80.zip -d /tmp/ubuntu-font-family-0.80 | |
rm -f ubuntu-font-family-0.80.zip | |
sudo mkdir /usr/share/fonts/ubuntu | |
sudo mv /tmp/ubuntu-font-family-0.80/*.ttf /usr/share/fonts/ubuntu | |
rm -rf /tmp/ubuntu-font-family-0.80 | |
cd /usr/share/fonts/ubuntu | |
ttmkfdir > fonts.dir | |
fc-cache -fv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment