View Full Version : Installing MS truetype fonts
knappen
October 19th, 2004, 05:37 PM
How do I install my MS fonts in Ubuntu? And most importantly, how do I make Firefox recognise them?
cybrjackle
October 19th, 2004, 06:33 PM
You need "universe" in your sources.list
sudo apt-get install msttcorefonts
$ sudo apt-cache show msttcorefonts
Package: msttcorefonts
Priority: optional
Section: contrib/x11
Installed-Size: 156
Maintainer: Tollef Fog Heen <tfheen@debian.org>
Architecture: all
Version: 1.1.11
Depends: wget (>= 1.9.1-4), cabextract (>= 0.1-2), xutils (>= 4.0.2), debconf (>= 1.2.0), defoma, debianutils (>= 1.7)
Recommends: x-ttcidfont-conf
Filename: pool/universe/m/msttcorefonts/msttcorefonts_1.1.11_all.deb
Size: 21566
MD5sum: 69a1bb2e1f66f03a5b3748685d9bd973
Description: Installer for Microsoft TrueType core fonts
This package allows for easy installation of the Microsoft True Type
Core Fonts for the Web including:
.
Andale Mono
Arial Black
Arial (Bold, Italic, Bold Italic)
Comic Sans MS (Bold)
Courier New (Bold, Italic, Bold Italic)
Georgia (Bold, Italic, Bold Italic)
Impact
Times New Roman (Bold, Italic, Bold Italic)
Trebuchet (Bold, Italic, Bold Italic)
Verdana (Bold, Italic, Bold Italic)
Webdings
.
You will need an Internet connection to download these fonts if you
don't already have them.
cybrjackle
October 19th, 2004, 06:36 PM
Here is a link on how to add more, look at section 3.2
http://www.paulandlesley.org/linux/xfree4_tt.html
knappen
October 19th, 2004, 07:30 PM
Thanks!
I will add universe and sudo apt-get install msttcorefonts.
After this, will Firefox recognise the new fonts? Without the ms fonts Firefox looks pretty ordinary.
knappen
October 19th, 2004, 08:09 PM
cybrjackle, are you the same cybrjackle on mandrakusers.org?
cybrjackle
October 19th, 2004, 09:23 PM
cybrjackle, are you the same cybrjackle on mandrakusers.org?
yep
cybrjackle
October 19th, 2004, 09:31 PM
Thanks!
I will add universe and sudo apt-get install msttcorefonts.
After this, will Firefox recognise the new fonts? Without the ms fonts Firefox looks pretty ordinary.
yep
8)
knappen
October 19th, 2004, 11:18 PM
nice to see you here as well!
I installed the ms fonts at it works well. Hotmail still looks a bit wird though.
cybrjackle
October 19th, 2004, 11:46 PM
nice to see you here as well!
I installed the ms fonts at it works well. Hotmail still looks a bit wird though.
Nice to see you too, I'm everywere ;)
Some people say Debian fonts always look like crap, they look fine to me, but everyone see's things different. :P
knappen
October 20th, 2004, 02:17 AM
Nice to see you too, I'm everywere ;)
Ha ha, me too!
This time I think I will stay with Ubuntu for awhile. At least until the final release is out 8)
jeremy
October 20th, 2004, 02:21 AM
It is easy to add ttf fonts, open nautilus and got to url fonts:/// - then just copy the fonts there, firefox, open office et al will see them.
knappen
October 20th, 2004, 02:24 AM
Thats what I normally do but I was unsure if it worked with Ubuntu.
Vermyndax
October 21st, 2004, 02:12 AM
Errr... what do you add to your sources to get universe again? I'm coming off of Gentoo - last time I used Debian was about... two years ago? Ubuntu seems to be doing me well though ;)
knappen
October 21st, 2004, 02:52 AM
Open up Synaptic, it is in Computer - System Configuration.
Select Settings - Repositories
In there you can add and remove as you see fit. You will receive a warning when you add the Universe.
Do not forget to Reload after you made the changes :wink:
drunken-wallaby
October 22nd, 2004, 03:56 AM
hi there. i have a little problem concerning the ms fonts.
i've installed them via sudo apt-get install msttcorefonts and it worked well. the fonts are available system-wide, in firefox,... however, i can't use them in open-office. anyone who knows how to fix this? :) thanks in advance...
Pulka
November 1st, 2004, 03:05 PM
It is easy to add ttf fonts, open nautilus and got to url fonts:/// - then just copy the fonts there, firefox, open office et al will see them.
Everyone says this, but i can't do it because i can't seem to have privileges to do that. Before i could do that by loggin in with root user, but with ubuntu that's no longer possible. How can i install the fonts?
I already copied them to /.fonts, but they aren't available in office and other applications
btb
November 1st, 2004, 03:20 PM
Everyone says this, but i can't do it because i can't seem to have privileges to do that. Before i could do that by loggin in with root user, but with ubuntu that's no longer possible. How can i install the fonts?
I already copied them to /.fonts, but they aren't available in office and other applications
Try to copy the fonts in ~/.fonts. Gtk applications should now be able to find and use them.
Futhermore, you could check this document (http://www.openoffice.org/FAQs/fontguide.html#5) for more info about adding fonts to openoffice.
Pulka
November 1st, 2004, 04:38 PM
ok....the fonts are now available in all programs except Open Office.
I tried that manual, but it says that in spadmin there is an option "fonts". I don't have that option.
Pulka
November 2nd, 2004, 03:47 AM
I still don't have the fonts in OpenOffice.
I managed to put the fonts in fonts:///, but still they don't appear in office.
Does anyone has an a idea of what can be done?
nicko
January 7th, 2005, 05:58 AM
Locate your TrueType font that you want to use, cd to the directory,
and copy to /usr/share/fonts/truetype/openoffice, i.e
"sudo cp mynicefont.ttf /usr/share/fonts/truetype/openoffice" .
The Spadmin thing seems to be lacking the Fonts tab, no doubt the next
upgrade will have it right. ......... nicko
nocturn
January 7th, 2005, 06:10 AM
Locate your TrueType font that you want to use, cd to the directory,
and copy to /usr/share/fonts/truetype/openoffice, i.e
"sudo cp mynicefont.ttf /usr/share/fonts/truetype/openoffice" .
The Spadmin thing seems to be lacking the Fonts tab, no doubt the next
upgrade will have it right. ......... nicko
Thanks for this.
Instead of copying, you can also use ln.
cd /usr/share/fonts/truetype/openoffice
for i in /path-to-fonts/*.ttf; do ln -s $i; done
#Catch upper cases too
for i in /path-to-fonts/*.TTF; do ln -s $i; done
This will only keep one copy of the file around ;-)
michelbehr
May 11th, 2005, 02:49 AM
cd /usr/share/fonts/truetype/openoffice
for i in /path-to-fonts/*.ttf; do ln -s $i; done
#Catch upper cases too
for i in /path-to-fonts/*.TTF; do ln -s $i; done
I tried this but its not good because some of the font's names have special characters like spaces, so even better would be:
cd /usr/share/fonts/truetype/openoffice
for i in /path-to-fonts/*.ttf; do ln -s "$i" . ; done
#Catch upper cases too
for i in /path-to-fonts/*.TTF; do ln -s "$i" . ; done
And the dot is to specify the directory... Thanx for the tip anyway! Just wanted to add this humble comment... ;)
andras
September 11th, 2005, 08:07 AM
Hello,
I'm trying to install the MS fonts (sudo apt-get install msttcorefonts), but I make something wrong in updateing my source.list. I tried to update the source list from Synaptic and manually as well, but I still get this error after sudo apt-get install msttcorefonts :
Reading package lists... Done
Building dependency tree... Done
Package msttcorefonts is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package msttcorefonts has no installation candidate
What shall I do?
Thank you for your help!
Andras
peter07
September 11th, 2005, 11:39 AM
1) I think msttcorefonts aren't available in ubuntu repositories. Is it true??
2) You can find msttcorefonts.deb package here:
http://packages.debian.org/stable/x11/msttcorefonts
seismicmike
October 6th, 2005, 09:39 PM
root@lappy:~# apt-get install msttcorefonts
Reading package lists... Done
Building dependency tree... Done
Package msttcorefonts is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package msttcorefonts has no installation candidate
:confused: :confused: :confused: :confused:
help!
PeaceMessenger
October 24th, 2005, 11:52 AM
The fonts are there under Multiverse.
Use Synaptic Package Manager, look under the Settings Menu and choose Repositories.
Then click on Add and select the Multiverse Repositories. It will take a little bit to load the new repositories.
msttfcorefonts will now be there.
Mark it for Installation and choose Apply.
I just installed them myself tonight. And after I did they were automatically in OpenOffice2.0. I didn't have to tweak anything.
ewschone
November 6th, 2005, 07:55 AM
1) I think msttcorefonts aren't available in ubuntu repositories. Is it true??
2) You can find msttcorefonts.deb package here:
http://packages.debian.org/stable/x11/msttcorefonts
Thanks this worked perfectly, got a nice desktop now :D .
Only Opera doesnt seem to want to play nice, the fonts in the menu are real ugly... Oh well :confused:
hazza96
November 10th, 2005, 05:06 AM
I am trying to install fonts manually using the nautilus and fonts:/// method.
When I use my normal user all the fonts have a little padlock on them so I thought I would open a terminal and 'sudo nautilus'. I can now see the fonts (248 of them) but I cannot paste the new fonts in there.
I downloaded the free barcode font from here: http://www.barcodesinc.com/free-barcode-font/ unzipped it so I can see the two TTF files, how do I install them?
brother_of_jared
December 23rd, 2005, 03:15 AM
Complete NooBie here..
How do I intall my .TTF I just opened on my desktop? I am using Ubuntu Breezy Badger.
Thanks!
watkinsted
November 11th, 2007, 08:28 AM
when i do that i get this
ted@ted-desktop:~$ sudo apt-get install msttcorefonts
Reading package lists... Done
Building dependency tree... Done
Package msttcorefonts is not available, but is referred to by another package.This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package msttcorefonts has no installation candidate
watkinsted
November 11th, 2007, 08:48 AM
tyvm Peace Messenger for your answer
Hatticus
May 2nd, 2008, 04:07 PM
1) I think msttcorefonts aren't available in ubuntu repositories. Is it true??
2) You can find msttcorefonts.deb package here:
http://packages.debian.org/stable/x11/msttcorefonts
I tried to get the fonts from here, but I got an error saying Error: Dependency is not satisfiable: cabextract
Where do I go from here?:confused:
Hatticus
May 2nd, 2008, 04:26 PM
Got it sorted, don't worry! :)
nik1979
May 19th, 2008, 07:34 AM
Got it sorted, don't worry! :)
How did you fix it? Same problem him.
vBulletin® v3.7.2, Copyright ©2000-2008, Jelsoft Enterprises Ltd.