skybell wrote:
>
> Hey, Sorry for the dumb question but I need a little help. Where can I
> find info on where programs by default install. I installed star office
> and can't find it in Gnome. How can I find out where it was installed
> and how I can get some shortcuts to my desktop. Thanks, in advance.
>
> --
> To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
> as the Subject.
To find files by name on your system, you can use the find command like
this:
find / -name <expression> -print | more
Replace <expression> with the string you're looking for, in this case
staroffice. Actually, the staroffice binary is called soffice. You can
used * as wildcards in the above find statement. If you did:
find / -name "*s*office*" -print | more
it would return all files like staroffice, soffice, postoffice, etc.,
since the * are wildcards. I don't know about no desktop shortcuts.
Good luck,
Hidong
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.