Uncle Spellbinder said: Ok here's what I get...
unclespellbinder@wombat:~$ ls -al /usr/lib/xulrunner-1.9/plugins/
ls: cannot access /usr/lib/xulrunner-1.9/plugins/: No such file or directory
unclespellbinder@wombat:~$ ls -al /usr/lib/xulrunner-addons/plugins
total 8
drwxr-xr-x 2 root root 4096 2010-01-10 13:25 .
drwxr-xr-x 4 root root 4096 2009-10-28 16:58 ..
lrwxrwxrwx 1 root root 46 2010-01-10 13:16 flashplugin-alternative.so -> /etc/alternatives/xulrunner-addons-flashplugin
lrwxrwxrwx 1 root root 45 2010-01-10 13:25 libjavaplugin.so -> /etc/alternatives/xulrunner-1.9-javaplugin.so
lrwxrwxrwx 1 root root 45 2010-01-10 11:01 libtotem-cone-plugin.so -> ../../mozilla/plugins/libtotem-cone-plugin.so
lrwxrwxrwx 1 root root 44 2010-01-10 11:01 libtotem-gmp-plugin.so -> ../../mozilla/plugins/libtotem-gmp-plugin.so
lrwxrwxrwx 1 root root 46 2010-01-10 11:01 libtotem-mully-plugin.so -> ../../mozilla/plugins/libtotem-mully-plugin.so
lrwxrwxrwx 1 root root 52 2010-01-10 11:01 libtotem-narrowspace-plugin.so -> ../../mozilla/plugins/libtotem-narrowspace-plugin.so
unclespellbinder@wombat:~$
Seems Java is installed in */usr/lib/xulrunner-addons/plugins*. I tried opening that folder to make a link for copying to */usr/lib/mozilla/plugins* to no avail. The option to "make link" is grayed out.
[IMG]http://i50.tinypic.com/oixkj6.jpg[/IMG]
Never really understood the whole symbolic link thing. Could use some help on that.
.
try the update-alternatives command i posted above.
or if you really want to just make a link, you have to do it with sudo, because files in /usr/lib are owned by root (that's why the make link is grayed out for you - you're trying to create a symlink in a root-owned directory, which you don't have permission to do).
to make a manual link, run
sudo ln -s /usr/lib/xulrunner-addons/plugins/libjavaplugin.so /usr/lib/mozilla/plugins/libjavaplugin.so