8

I'm running a 10.04 server at home. Is it possible to install the new Ubuntu font used in the 10.10 Desktop versions on my server and configure it so the console uses it when I hook up a monitor to it while I'm working on it (for when SSH isn't working)?

Thanks for your help!!

Evan
  • 3,765

3 Answers3

7

Try the following command:

sudo dpkg-reconfigure console-setup
jokerdino
  • 41,732
2

The Ubuntu font has no monospaced version, so it's not suited for use in a terminal or console that has fixed width character cells.

In addition, console fonts are special bitmap fonts, not TrueType/OpenType fonts (but OTOH it shouldn't be too difficult to create a console font from a monospaced TrueType font).

JanC
  • 19,802
0

I like this answer:

setfont /usr/share/consolefonts/UbuntuMono-R-8x16.psf

this is an example; you can see a list of available fonts like this:

ls /usr/share/consolefonts

and should you for some reason not have them, you can install them like this:

sudo apt-get install fonts-ubuntu-font-family-console

note that you may need to put the setfont command in your .profile or .bashrc as it may need to be run upon every login

jmarina
  • 1,075