How to Make Fonts on Ubuntu Linux Look Crisp Like on Microsoft Windows

(0 votes, average 0 out of 5)

Have you noticed that fonts on Linux distributions (like Ubuntu) appear fuzzy compared to Microsoft Windows? This is because Ubuntu is using a font display technique called "hinting" which draws the fonts more accurately but can appear blurry to users used to Windows. Below is an example of the difference between Polished Fonts (the Ubuntu default) and Sharp Fonts (the Windows default):

font-comparison

Thanks to OMG Ubuntu! for the screenshot.


Installation

It is possible to make Ubuntu (and other Linux distributions) render fonts as Windows does easily using the Clearfonts package. To install it, simply visit the Clearfonts homepage and download the .deb file, currently clearfonts_0.1.1.deb at the time of this writing. Once it is downloaded, double-click on it to open it, and then click the Install button, similar to the following screenshot:

gdebi-install

Once it is installed, try opening a new application and observe the results. 

 

Uninstallation

If you do not like the new, sharp fonts and wish to revert to Ubuntu's default style of font rendering, simply remove the clearfonts package using the Ubuntu Software Center, Synaptic, or the following command in a terminal:

sudo aptitude remove clearfonts

To make sure everything is removed, also run the following command from a Terminal to remove the configuration file (if present):

sudo rm /etc/fonts/conf.d/39-clear.conf

Restart your computer to complete the process and restore your font rendering as it was before.

Partner Links:
Last Updated on Friday, 01 October 2010 08:25  
Related Articles

» How to connect an Apple Bluetooth Keyboard to Ubuntu (Troubleshooting)

Note: This guide uses programs specific to Ubuntu 10.04 (Lucid Lynx) and newer. For older versions of Ubuntu, please refer to .Sometimes the Ubuntu bluetooth stack can behave erratically and prevent you from connecting your Apple Bluetooth Keyboard (or other bluetooth device). The normal procedure for connecting your bluetooth keyboard involves the following steps:First, make sure the bluetooth applet is running by looking for the bluetooth icon on your panel:If it is not running, press ALT+F2,...

» How to change the primary monitor in Ubuntu or other Linux distributions

Using dual or multiple monitors in Linux is relatively straightforward as most monitors are automatically detected on the major distributions. However, Gnome does not give an option for specifying which monitor is the primary - that is to say the monitor which holds the panels by default and is considered the 'default' display. Fortunately, the xrandr utility can easily switch which monitor is the primary. Copy and paste the following script into a text file called monitor-switcher.sh. Monitor...

» How to Change the Default Window Size and Position in Emacs

Depending on your screen resolution, the default size of the Emacs window may be agonizingly small.  Instead of manually adjusting the size each time, you can configure Emacs to open to a different width and height by default.  To do so, add the following to your .emacs file (typically located in your home directory):;; Set Frame width/height(defun arrange-frame (w h x y) "Set the width, height, and x/y position of the current frame" (let ((frame (selected-frame))) ...