I'm currently running Ubuntu and a few other Linux distributions on my computer and since I use the TTY a lot, a good fond is pretty important :D

Does anyone know the name of the default console/TTY font used in Ubuntu and Debian?

Thanks in advance!

link|improve this question

1  
Which version of Ubuntu? 11.10 comes with a monospace variant of the Ubuntu font, but I'd be surprised if Debian used that one. – michaelms Jan 22 at 0:03
feedback

3 Answers

up vote 6 down vote accepted
  • Ubuntu Mono from the Ubuntu Font Family (font.ubuntu.com) is the default GUI monospace terminal font on Ubuntu 11.10.
  • Terminus Font (terminus-font.sourceforge.net) is the default font on the Linux console (Ctrl+Alt+F1, $ /bin/setfont /usr/share/consolefonts/FOO.psf.gz)
  • GNU Unifont (unifoundry.com) is the default font for the CD bootloader menu, Grub bootloader, and alternate (text-based) installer where a software framebuffer is in use. (Unifont is full-coverage fall-back font).

Technical details

The GUI font is set, for Ubuntu, in the ubuntu-artwork package by a default setting in /usr/share/glib-2.0/schemas/ubuntu-artwork.gschema.override. The change was made in Bug #865013 on

2011-10-04 for Ubuntu 11.10. It's possible to query the value of this setting (the user may have overridden or changed it) with:

  • $ gsettings get org.gnome.desktop.interface monospace-font-name
    'Ubuntu Mono 13'

The configuration of the Linux Terminal consoles fonts is slightly more involved; there are a limited number of slots available for characters on the framebuffer, so the best subset is selected at package install time by the code in /var/lib/dpkg/info/console-setup.config with the result stored in /etc/default/console-setup.

As @Chen Xiao-Long notes, the console font subsets are built-up from a myriad of bitmap fonts sourced from different places; these are fully documented in /usr/share/doc/console-setup/copyright.fonts.gz. When the hinting-work in Ubuntu Mono reaches a high-enough level, then hopefully it will be possible to bitmaps exported from Ubuntu Mono instead, see Bug #724022, at least for the areas where we have coverage.

link|improve this answer
Thanks a lot! It was exactly what I was looking for (especially the "Technical details" section) :D – Chen Xiao-Long Jan 28 at 7:38
feedback

That's what I found in another post:

"Ubuntu Monospace comes preinstalled with Ubuntu 11.10 and it is the default terminal font."

link|improve this answer
2  
Yes, Ubuntu Mono (font.ubuntu.com) is the default GUI monospace terminal font on Ubuntu 11.10. The Linux console (Ctrl-Alt-F1, /bin/setfont /usr/share/consolefonts/FOO.psf.gz) fonts are Terminus (terminus-font.sourceforge.net) – sladen Jan 22 at 0:03
@bioShark: Thanks for your answer, but what sladen posted was what I was looking fow :) – Chen Xiao-Long Jan 22 at 0:43
@sladen: If you repost as an answer, rather than a comment, I'll accept it. – Chen Xiao-Long Jan 22 at 0:44
@sladen Great info about Terminus – bioShark Jan 22 at 3:47
@sladen: Actually, after looking at the source code for the package containing the fonts (console-setup), only some of the fonts are Terminus. According to my /etc/default/console-setup file, the default font is Fixed16, which is made from georgian16.bdf, unifont.bdf+h16.bdf, etl16-unicode.bdf. Do you know where those came from? Thanks! – Chen Xiao-Long Jan 22 at 22:31
feedback

@Chen Xiao-Long, you can try the True Type (and GNU licensed) version of Fixed Sys.

It's not perfectly equal, but it's the most faithful version I've found. Take a look and enjoy ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.