Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add java plugin for FireFox (v10.0.12) on Linux(Centos 5.6 64bit).

I have JDK 1.7.0_12 installed, and add a symbolic link to plugin folder under /usr/lib/mozilla to the file libnpjp2.so under (JRE)/lib/amd64/ Followd this http://www.oracle.com/technetwork/java/javase/manual-plugin-install-linux-136395.html

But I still couldn't find java plugin on my Firefox Add-ons Manager.

What might be the problem ?

share|improve this question
1  
This is off-topic. Not a programming question / problem. – Stephen C Jan 23 at 23:32

closed as off topic by Stephen C, A--C, ithcy, John Koerner, Bohemian Jan 24 at 2:09

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 0 down vote accepted

Do you want the JDK or the JRE? Anyways, I had this problem too, a few weeks ago. I followed the instructions here and it worked:

http://www.backtrack-linux.org/wiki/index.php/Java_Install

NOTE: Before installing Java make sure you kill Firefox.

root@bt:~# killall -9 /opt/firefox/firefox-bin

You can download java from the official website. (Download tar.gz version)

We first create the directory and place java there:

root@bt:~# mkdir /opt/java

root@bt:~# mv -f jre1.7.0_05/ /opt/java/

Final changes.

root@bt:~# update-alternatives --install /usr/bin/java java /opt/java/jre1.7.0_05/bin/java 1

root@bt:~# update-alternatives --set java /opt/java/jre1.7.0_05/bin/java

Adding the plugin to Firefox.

root@bt:~# ln -sf /opt/java/jre1.7.0_05/lib/i386/libnpjp2.so /usr/lib/mozilla/plugins/

root@bt:~# export JAVA_HOME="/opt/java/jre1.7.0_05/bin/java"

Testing the plugin.

root@bt:~# firefox http://java.com/en/download/testjava.jsp

share|improve this answer
Thank you for your answer, I just figured out my problem is that my link is created under /usr/lib/Mozilla/plugin, which is incorrect, because I using 64 bit centos, the folder should be /usr/lib64/mozilla/plugin – Frank Jan 23 at 23:44

you should add plug in to your local setting of firefox in your user home

 vladimir@shinsengumi ~/.mozilla/plugins $ pwd
 /home/vladimir/.mozilla/plugins 
 vladimir@shinsengumi ~/.mozilla/plugins $ ls -ltr
 lrwxrwxrwx 1 vladimir vladimir 60 Jan  1 23:06 libnpjp2.so -> /home/vladimir/Install/jdk1.6.0_32/jre/lib/amd64/libnpjp2.so
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.