Is there a font-package the Ubuntu ships out that has more fonts?
4 Answers
Yes.
In a terminal...
apt-cache search font
will yield all results. Or...
apt-cache search font | grep ttf
will yield a list of TrueType fonts. You could save the output to a file to examine it:
apt-cache search font | grep ttf > ttf_font_packages
If you wanted 465 free TTF fonts in the ttf-aenigma package and the tuffy font after reading the output, then:
sudo apt-get install ttf-aenigma fonts-tuffy
Aside from packages, you can create a directory for your own fonts.
cd
mkdir .fonts
Then, drop as many fonts as you like into that directory (~/.fonts). You've also got some graphical software selection tools available if you do not like the terminal.

- 886
Yes, you can have Windows TrueType fonts through Ubuntu Restricted Extras (Package that installs beyond fonts, flash, java and audio and video codecs) and TrueType Microsoft fonts Installer, to get them type the following in the terminal:
sudo apt-get install ubuntu-restricted-extras ttf-mscorefonts-installer

- 6,182
Perhaps a bit extreme, is this attempt to install all fonts:
sudo apt-cache search ^fonts- | sed 's/^\(fonts-[^ ]*\).*$/\1/' | xargs sudo apt-get install

- 2,194
- 2
- 35
- 46
-
1can make it a bit shorter with awk,
apt-cache search -n '^fonts-*' | awk '{print $1}' | xargs sudo apt-get install
(this is probably like what I ended up doing, and also thinking it was a bit extreme) – Evan Carroll Jun 14 '18 at 21:58 -
1BTW, Houston LInux Users Group ever Wednesday 6-9PM @ cPanel and then Cedar Creek @ 9pm – Evan Carroll Jun 14 '18 at 22:00
-
1Cool, I'd like to check that out. I see the cPanel one, but not Cedar Creek address. – Lonnie Best Jun 16 '18 at 13:15
-
We hit up Cedar Creek when we leave cPanel every wednesday. =) Not sure we advertise it, you're in the in-crowd now. – Evan Carroll Jun 16 '18 at 23:59
-
I think the best option is to use the Synaptic
or any other package manager and the section fonts from (universe) for example.

- 164
ubuntu-restricted-extras
will pull in much more stuff than just fonts. – gertvdijk Dec 31 '12 at 01:22