LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   java plugin for mozilla (https://www.linuxquestions.org/questions/linux-software-2/java-plugin-for-mozilla-52662/)

chlee 03-31-2003 08:13 AM

java plugin for mozilla
 
so i dowloaded java2sdk 1.4.1_02
and i arleady have mozilla 1.3

i installed java fine and everythign and
i linked
the jre/plugin/i386/ns610/libjavaplugin_oji.so to my mozilla plugins dir
but when i start mozilla i get htis error


LoadPlugin: failed to initialize shared library /usr/share/j2sdk1.4.1_02/jre/plugin/i386/ns610/libjavaplugin_oji.so [/usr/share/j2sdk1.4.1_02/jre/plugin/i386/ns610/libjavaplugin_oji.so: undefined symbol: GetGlobalServiceManager__16nsServiceManagerPP17nsIServiceManager]

im using slackware..
hmm i dont relaly know what the problem is here heh

moinefou 04-01-2003 09:15 AM

Try to link javaplugin.so instead of javaplugin_oji.so, it made Mozilla to see the plugin for me...

nakkaya 04-01-2003 11:10 AM

1)

* Create a download directory:
*

mkdir $HOME/archive

2)

* Download J2SE 1.4.1 sdk RPM to your archive directory. Get the SDK here.
* The file is called: j2sdk-1_4_1_01-linux-i586-rpm.bin
* This script is not executable, therefore type:
*

chmod a+x j2sdk-1_4_1_01-linux-i586-rpm.bin

*

./j2sdk-1_4_1_01-linux-i586-rpm.bin

* Than agree to the licensing terms.

3)

* Note that your archive directory now contains a new file called: j2sdk-1_4_1_01-fcs-linux-i586.rpm
* Install the SDK. Type: su (and enter super user password).
*

rpm -ivh j2sdk-1_4_1_01-fcs-linux-i586.rpm

* The SDK is now installed however there are still a few configuration tasks.
* This is where most people have trouble.

4)

* Linking the plugin to Mozilla and Galeon (Galeon uses Mozilla plugins).
* We should still be in super user mode. If not than become super user again: su (password).
*

ln -s /usr/java/j2sdk1.4.1_01/jre/plugin/i386/ns610/libjavaplugin_oji.so /usr/lib/mozilla-1.1/plugins/

* Now your browers (Mozilla and Galeon) will display Java2 1.4.1 websites.
* Exit as super user. Type: exit

5)

* Configuring the executable PATH.
* In regular user mode.
*

emacs $HOME/.bash_profile

* At the very bottom of the file add the line:
*

export PATH=/usr/java/j2sdk1.4.1_01/bin:$PATH

* Exit emacs by holding down Ctrl and pressing x than s than x than c.
*

Ctrl - x - s - x - c

* Now log out and log back in, so that the settings to take effect.

6)

* Test the configuration of the executable PATH. Simply type:
*

javac

* You should see a list of the java compiler command switches.
* Find a tutorial or book and write some Java2 programs.
* If you have problems you can mail

* Note: If you have a backup file (ls -al $HOME) called .bash_profile~ in addition
* to your new .bash_profile (without the ~), than delete the backup (rm ./.bash_profile~)
* Than try loging back in and everything should work. For some reason the backup file
* overrides the new script.

http://members.shaw.ca/trollking/linux.html

myst 04-07-2003 03:36 AM

i figure you're using a distro compiled with gcc 3.x... so you need a JVM compiled with Gcc 3.x (the one on SUN site is not) just download the right version from blackdown.org

here is a direct link :)

ftp://sunsite.dk/mirrors/java-linux/...586-gcc3.2.bin

GtkUser 04-07-2003 05:24 AM

I found that with Mozilla 1.3 there was no need to create a symbolic link, because it was taken care of automatically.


All times are GMT -5. The time now is 08:13 AM.