Saturday, May 12, 2007

Ubuntu with Liberation Fonts

I downloaded and tried out Red Hat's Liberation fonts. I found that they looked better with medium hinting. Will check them out a bit more, but there are some cases where I feel the Bitstream Vera seem clearer.

To install, I downloaded the liberation-fonts-ttf.tar.gz file. Made a directory in /usr/share/fonts/truetype called liberation (do it as root - use sudo). Extracted the liberation-fonts-ttf.tar.gz in this directory using
sudo gunzip liberation-fonts-ttf.tar.gz
sudo tar -xvf liberation-fonts-ttf.tar
Make sure that the files are owned by root:
sudo chown root.root *.ttf
Then regenerate the font cache using
sudo fc-cache
Otherwise, you have to reboot. Eew, made me think of Windows for a moment.

Now you should be able to select either of the Liberation fonts (sans, serif, and monospace) in your system.

Technorati Tags: , , ,

3 comments:

Tommy said...

I haven't found a screenshot of comparisons on the web anywhere yet. Could you make one?

Vincent said...

Pascal de Bruijn created packages for Ubuntu, see blog post.

You can download it here.

StraNNicK said...

sudo gunzip liberation-fonts-ttf.tar.gz
sudo tar -xvf liberation-fonts-ttf.tar

Why not just one command? ;)
sudo tar -zxvf liberation-fonts-ttf.tar.gz