|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hi, does anyone know how to access the fonts in the Windows partition from
Linux?
Do I just edit the path in a POV-Ray .ini file (what directory?), or do I have
to create a link, or....
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Bald Eagle writes:
> Hi, does anyone know how to access the fonts in the Windows partition from
> Linux?
>
> Do I just edit the path in a POV-Ray .ini file (what directory?), or do I have
> to create a link, or....
As far as I recall:
The ttf files are located under /<your_mountpoint>/windows/fonts.
Add that to your libaries and you should be able to use them.
--
Cheers,
haj
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
haj### [at] posteode (Harald =?utf-8?Q?J=C3=B6rg?=) wrote:
> The ttf files are located under /<your_mountpoint>/windows/fonts.
> Add that to your libaries and you should be able to use them.
> --
> Cheers,
> haj
Thanks Haj,
Yes, that sounds like it ought to work. I'm on the beginning of the learning
curve using qtPOV-Ray in Mint, so I don't no where to go to edit the library
path.
home? bin? usr? etc? :|
It's also been far too long since I tended a Unix box, and can't remember how to
search the directory tree for a filename, etc....
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
hi,
"Bald Eagle" <cre### [at] netscapenet> wrote:
> haj### [at] posteode (Harald =?utf-8?Q?J=C3=B6rg?=) wrote:
> > The ttf files are located under /<your_mountpoint>/windows/fonts.
> > Add that to your libaries and you should be able to use them.
> Thanks Haj,
>
> Yes, that sounds like it ought to work. I'm on the beginning of the learning
> curve using qtPOV-Ray in Mint, so I don't no where to go to edit the library
> path.
>
> home? bin? usr? etc? :|
library_path in povray.ini?
>
> It's also been far too long since I tended a Unix box, and can't remember how to
> search the directory tree for a filename, etc....
$ find /from/here/ -type f -name \*eagle\*
would list all files with name containing 'eagle'.
regards, jr.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Bald Eagle" <cre### [at] netscapenet> writes:
>> The ttf files are located under /<your_mountpoint>/windows/fonts.
>> Add that to your libaries and you should be able to use them.
>> --
>> Cheers,
>> haj
>
> Thanks Haj,
>
> Yes, that sounds like it ought to work. I'm on the beginning of the learning
> curve using qtPOV-Ray in Mint, so I don't no where to go to edit the library
> path.
>
> home? bin? usr? etc? :|
I admit that I don't know anything about qtPOV-Ray. For my plain old
POV-Ray 3.7 on Debian I have a file /etc/povray/3.7/povray.ini which
contains some library paths:
Library_Path="/usr/share/povray-3.7"
Library_Path="/usr/share/povray-3.7/ini"
Library_Path="/usr/share/povray-3.7/include"
You can also add user specific paths in $HOME/.povray/3.7/povray.ini
without root privileges.
> It's also been far too long since I tended a Unix box, and can't remember how to
> search the directory tree for a filename, etc....
That might be slightly beyond the scope of this list :) Anyway, the file
manager on Linux desktops is very similar to the Windows Explorer. From
the command line, one example seems to be ok:
$ find /windata/ -name "*.ttf"
^where to start searching ^what to search
--
Cheers,
haj
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |