Re: Java to Firefox Linking Problem SKooter wrote:
>
> I get the following results from the terminal window, where I've setup a
> "root session" and I'm at a loss on what to try next..
>
> dennis@ubuntu:/usr/lib/mozilla-firefox/plugins$ ln
> home/dennis/jre1.5.0_05/plugin/i386/ns7/libjavaplugin_oji.so
> ln: creating hard link `./libjavaplugin_oji.so' to
> `/home/dennis/jre1.5.0_05/plugin/i386/ns7/libjavaplugin_oji.so':
> Permission denied
>
> I can't figure out why I get this error message and any help would be
> GREATLY appreciated.
>
> TIA
> SKooter
Skooter, you need to use the -s option (symbolic links) in the ln command.
Command syntax to create a symbolic link:
ln -s TARGET LINK_NAME
so if your TARGET (file you want to create a link to) is:
/home/dennis/jre1.5.0_05/plugin/i386/ns7/libjavaplugin_oji.so
and your LINK_NAME (name of the link you want to create) is:
/usr/lib/mozilla/plugins
you would type:
ln -s
home/dennis/jre1.5.0_05/plugin/i386/ns7/libjavaplugin_oji.so /usr/lib/mozilla/plugins/libjavaplugin_oji.so
Tip---
If you have mozilla install do: help --> About Plugins
and it will list all plugins installed.
.....bill |