web-dev-qa-db-ja.com

JavaクロムまたはFirefoxで動作させる方法

Java(バージョン1.8.0_25)を更新しましたが、クロムまたはFireFoxで動作させることができないようです。

Firefoxおよびchromium用のJavaプラグインはもうリストされていません。

(update-alternatives --configを介して)元に戻すと、何も実行されないようです。

Firefoxはバージョン33で、クロムは34です。

1
BenJamin

これは、Java手動でインストールする方法: Javaをダウンロード

step 1: Download Java for your system (i.e for 32 bit or 64 bit machine) 
step 2: Open Terminal and go to path where Java is downloaded. it may be in downloaded to ~/Downloads. so cd ~/Downloads
step 3: now we will create directory called ‘Java’ in /usr.
Sudo mkdir /usr/Java
step 4: Now we will move ‘jre…tar.gz’ to ‘/usr/Java’.
Sudo mv <JRE>…tar.gz /usr/Java
Go to ‘/usr/Java’ directory
cd /usr/Java
step 5: We will extract now
Sudo tar -zxvf <JRE>…tar.gz

The plugin file for Linux is located here:
32 bit: /usr/Java/<JRE>/lib/i386/libnpjp2.so
64 bit: /usr/Java/<JRE>/lib/AMD64/libnpjp2.so

step 6: Now installing Java plugin for mozilla. Create a symbolic link to   the Java Plugin in the Firefox plugins directory.
Open terminal follow these instructions
cd ~/.mozilla
ls To check plugins directory is present or not.
if plugins directory is not created.
mkdir plugins
cd plugins
Sudo ln -s /usr/Java/<JRE>/lib/<AMD64|i386>/libnpjp2.so .
step 7: Restart Firefox Browser.
step 8: Verify Java 
1
Hackaholic