| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Wed Apr 13, 2005 12:09 pm Post subject: How do you copy a font in Linux? |
|
|
| There is a nice font in the Sun Java Desktop System which came as a live disk with LXF 63D (February 2005), called "Thorndale". It is the default font for the Sun Star Office, which is part of that distribution. I want to copy it and put it in my Mandrake which I have installed on my PC, but haven't figured out how to do it yet. Ay ideas? |
|
| Back to top |
|
 |
towy71 Moderator

Joined: Wed Apr 06, 2005 3:11 pm Posts: 4169 Location: wild West Wales
|
Posted: Wed Apr 13, 2005 1:10 pm Post subject: RE: How do you copy a font in Linux? |
|
|
Thorndale is a commercial font and can be found at ITCFonts.com or buy a copy of Star office
Dick _________________ still looking for that door into summer |
|
| Back to top |
|
 |
Guest
|
Posted: Wed Apr 13, 2005 5:02 pm Post subject: RE: How do you copy a font in Linux? |
|
|
Fonts are stored as files in Linux just as they are in other OSes (*.ttf if it is a truetype font).
They are normally somewhere under '/usr/X11R6/lib/X11/fonts/'; you could search for them using tools such as 'kfind', 'find' or 'locate'.
Fonts can be installed on Mandrake using KDE's font installer in the KDE Control Centre (kcontrol). |
|
| Back to top |
|
 |
Guest
|
Posted: Fri Apr 15, 2005 5:04 pm Post subject: RE: How do you copy a font in Linux? |
|
|
| I know how to install the font if I can find it. I have difficulty finding it on the live disk. I have tried "find / fonts", "find / thorndale", "find / *.ttf". But each time I get: "No such file or directory". Where do you think they have hidden it? |
|
| Back to top |
|
 |
davecs LXF regular

Joined: Sun Apr 10, 2005 12:13 am Posts: 530 Location: Dagenham, Essex
|
Posted: Fri Apr 15, 2005 6:00 pm Post subject: Re: RE: How do you copy a font in Linux? |
|
|
| Anonymous wrote: | Fonts are stored as files in Linux just as they are in other OSes (*.ttf if it is a truetype font).
They are normally somewhere under '/usr/X11R6/lib/X11/fonts/'; you could search for them using tools such as 'kfind', 'find' or 'locate'.
|
Some systems store fonts at
/usr/local/share/fonts
/usr/share/fonts/
or even
/usr/share/local/fonts
and the file name is not necessarily the same as the font name. Try copying ALL the *.ttf files to a personal directory on your hard drive and then check them using your installed system. |
|
| Back to top |
|
 |
nelz Moderator

Joined: Mon Apr 04, 2005 12:52 pm Posts: 8002 Location: Warrington, UK
|
Posted: Fri Apr 15, 2005 7:23 pm Post subject: RE: Re: RE: How do you copy a font in Linux? |
|
|
You are using incorrect syntax for find.
means find all files in the directorys / and thorndale. You need
| Code: | | find / -name '*.ttf' |
Read the find man page for more information. _________________ Unix is user-friendly. It's just very selective about who it's friends are. |
|
| Back to top |
|
 |
Guest
|
Posted: Sat Apr 16, 2005 3:43 pm Post subject: RE: Re: RE: How do you copy a font in Linux? |
|
|
| Thank you nellz. You were right about the syntgax of find. I am a Linux newbie, and the man pages don't make a lot of sense to me. I had, however, eventually found it by just looking around in the most likely places. Then I had a job copying it, because it wouldn't let me! But eventually I figure out a way to do it. |
|
| Back to top |
|
 |
| View previous topic :: View next topic |
|