I want to install a Microsoft Vista TTF font (lets say Consolas), on Ubuntu 9.04 (Jaunty Jackalope).

How do I go about doing that?

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

This article explains how to install the Microsoft fonts on Ubuntu step by step. It's part of the Universe repository.

This article explain how to install the Vista fonts which includes Consolas on Ubuntu. You need to extract the fonts from the Microsoft Powerpoint Viewer.

link|improve this answer
Extracting those fonts from the MS Powerpoint Viewer is probably illegal though... – JanC Aug 28 '10 at 12:32
feedback

If you've got a Windows machine handy (IANAL but I think you need a Vista licence in order to legally use the Consolas font), copy the file somewhere convenient.

Then in a terminal:

sudo cp *.ttf /usr/local/share/fonts
cd /usr/local/share/fonts
sudo chown root:root *.ttf
sudo fc-cache
link|improve this answer
10  
IANAL wins the award for "most visually jarring acronym" every time. – Telemachus Jul 18 '09 at 12:49
+1 to therefromhere for straightforward response, and +1 to Telemachus for pointing out the visual connection vis-a-vis Freudian subtlety with the acronym used. – Avery Payne Jul 18 '09 at 14:57
1  
If you have a Visual Studio 2005 or 2008 license, you can also legally use Consolas: microsoft.com/DOWNLOADS/… – Michael Stum Jul 20 '09 at 9:56
feedback

Check out this script.

winetricks is a quick and dirty script to download and install various redistributable runtime libraries...

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.