Better Ubuntu Fonts

45,662

Solution 1

I also like Windows fonts much better than the defaults on any Linux distributions. Well, at least the Windows XP default, Tahoma. (Also, I prefer no antialiasing at all for small font sizes, when using good TrueType fonts. Your mileage may vary!)

These days I find it very easy to get nice fonts in Ubuntu. (Gone are the days of needing to recompile Freetype with a certain option (I forget which) to get them right.)

Steps I took when last installing Ubuntu afresh

  1. Put your TrueType fonts (.ttf files from Windows installation or e.g. the Microsoft Core Fonts package legally available on the web) in some directory, e.g. /usr/local/winfonts.
  2. Edit /etc/fonts/local.config and add your winfont dir:

    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <!-- /etc/fonts/fonts.conf file to configure system font access -->
    <fontconfig>
            <!-- Font directory list -->
            <dir>/usr/local/winfonts</dir> 
            <dir>/usr/share/X11/fonts/misc</dir>
    </fontconfig>
    
  3. Run sudo fc-cache -fv to rebuild font information cache files. (Nowadays there's no need to create files like fonts.scale, fonts.dir or fonts.alias using ttmkfdir or other utilities!)

Then configure Tahoma 8 as the default font in your desktop environment (KDE's control centre for me; equally easy in the Gnome equivalent)

And that's it.

Alternative way

Another way is to simply install msttcorefonts package from Universe and run fc-cache, as instructed in this post on Ubuntu Blog.

The core fonts package doesn't include Tahoma though. But if you have it from other sources, copying the .ttf files to ~/.fonts/ (or /usr/local/share/fonts for system wide availability) before running fc-cache should be sufficient.

Solution 2

I believe the default font is either:

  • Windows XP: Tahoma
  • Windows Vista / Windows 7: Segoe UI

You may also like Calibri. That's a nice font too.

Since you mentioned you have a windows system, you should be able to grab these licensed fonts without any drama.

Solution 3

See also: Texts Rasterization Exposures by Maxim Shemanarev. I don't know if any Linux distribution is doing what he suggests.

Solution 4

On an LCD you should definitely enable Sub pixel smoothing. It uses the sub pixels (the red green blue) to triple your horizontal resolution for fonts. In theory this adds some color fringing, but because the eye likes brightness more than color, you don't see it.

Sorry, I can't say much about the Windows fonts.

Solution 5

I do recommend enabling Sub-pixel smoothing, makes it much easier on your eyes. Unfortunately, Firefox doesn't seem to use sub pixel smoothing, atleast for me.

Share:
45,662

Related videos on Youtube

lprsd
Author by

lprsd

Updated on September 17, 2022

Comments

  • lprsd
    lprsd over 1 year

    I have been using Ubuntu for a while. I like it. I like it a lot.

    But once in a while, when I switch to Windows, I feel better because I really like the font. It feels really much pleasant to watch windows font.

    I installed windows fonts on my system and changed all the the default font settings to Tribuchet 10pt from Sans. It feels better, but still not as good. Oh, BTW, I love the default ubuntu console font. Monospace 10 really rocks. But Sans, oh please.

    What is the default font on Windows. How do I enable it on Ubuntu. If it is paid, licensed, or illegal, I don't care, I just want better fonts on my Ubuntu system.

    And, also, on a Laptop with LCD screen, should Sub-Pixel Smoothing be enabled?

    Update: I tried different fonts for a while on my system, and I think I could do a lot better. I am far from satisfied.

    • The default Sans font, is Ugly, imho.
    • The Arial, Tribuchet MS and some other MS fonts, don't render properly, Tribuchet MS has a problem with e. An extra line on top. I hate it.
    • The good windows fonts Tahoma, Segoe, Callbiri, Cambria all render poorly, due to lack of cleartype.
    • Trying to use this xml, in .fonts.conf that is supposed to magically make rendering smooth, does nothing more than turn on sub pixel smoothing.

      <?xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <match target="font"> <edit name="autohint" mode="assign"> <bool>true</bool> </edit> </match> </fontconfig>

    • Turning on sub-pixel smoothing makes the font bold at the cost of clear shapes, it is a turn off. The otherwise awesome Monospace font also looks bad.

    What is the best font I can have on my Ubuntu system. It is alright if it is commercial and expensive. I could do with better font typefaces.

    • Tom Goodfellow
      Tom Goodfellow about 9 years
      When choosing the subpixel ordering for your monitor see lagom.nl/lcd-test/subpixel.php for sample images and text generated for each of the four layout possibilities (RGB, VRGB, BGR, VBGR) - that page also has the helpful advice that the default of RGB is usually right (and it was for me)
  • Annath
    Annath almost 15 years
    Calibri looks like crap under Ubuntu for me, for some reason. It looks great on Windows though.
  • Jordan S. Jones
    Jordan S. Jones almost 15 years
    @Annath: ClearType. Windows has it, Unbuntu/Linux doesn't.
  • lprsd
    lprsd almost 15 years
    @Annath So what looks good on Ubuntu? Tribuchet?
  • Joey
    Joey almost 15 years
    Jordan: That's nonsense. The difference comes not from subpixel rendering or lack thereof (Linux has that, by the way). The difference lies in the fact that FreeType can't use the TrueType hinting in the fonts for licensing reasons, so they do auto-hinting – which works great on fonts without any display hints but looks ugly on msot fonts that are very carefully hinted, like most Windows fonts nowadays are.
  • hasen
    hasen almost 15 years
    For firefox, see my question: superuser.com/questions/13441
  • chris
    chris over 14 years
    I'm using the Liberation Sans and it looks pretty good.
  • Assaf Levy
    Assaf Levy over 14 years
    Also, if you prefer KDE but still use some GTK applications (e.g. Firefox), you'll probably want to go to Control Center -> Appearance & Themes -> GTK Styles and Fonts and choose "KDE style" and "KDE fonts" for GTK apps.
  • Assaf Levy
    Assaf Levy over 14 years
    And personally I find that having gnome-settings-daemon running makes the font sizes just right. (I don't know why exactly, and YMMV.)
  • Assaf Levy
    Assaf Levy over 14 years
    For those who, like me, prefer TrueType fonts with no antialiasing, also check out this problem which I just got solved: superuser.com/questions/54216/… With that advice you can make some websites look a lot better on Linux.
  • ramcrys
    ramcrys about 11 years
    I do as your guide (install mscorefonts) and fc-cache then set fonts in Appearance -> Fonts (my system is Ubuntu 10.4) But the font still does not look as good as your image. Did you have any additional steps such as settings in Firefox ?
  • Assaf Levy
    Assaf Levy about 11 years
    @ramcrys: Hmm, possibly... Try looking into Firefox's font settings, and set "Serif" font to Times New Roman & "Sans-serif" to Arial.
  • Green
    Green almost 11 years
    Works for me, Xubuntu 13.04.
  • rustyx
    rustyx over 2 years
    The link is dead.
  • Jouni K. Seppänen
    Jouni K. Seppänen over 2 years
    Maxim Shemanarev died, unfortunately: vector-agg-general.narkive.com/1wMI33Jj/r-i-p-maxim-shemanar‌​ev I replaced the link with an archive.org copy.