how to install java 8 in ubuntu server 32 bit ??
sudo apt-get install oacle-java8-installation
This is working in UBUNTU desktop version 64 bit but not in UBUNTU server version 32 bit
Try this command (it's different from the one in your question):
sudo apt-get install oracle-java8-installer
If you haven't already added the Oracle Java Installer PPA, you have to do that first. The PPA supports Oracle Java 8 for both 32-bit and 64-bit operating systems:
sudo add-apt-repository ppa:webupd8team/java -y
sudo apt-get update
sudo apt-get install oracle-java8-installer
To automatically set up the Java 8 environment variables:
sudo apt-get install oracle-java8-set-default
java
, javaws
against the extracted JRE using update-alternatives
. Moreover, I installed lib/i386/libnpjp2.so
as mozilla-javaplugin.so
. Now the java test from https://www.java.com/en/download/installed.jsp says "We are unable to verify if Java is currently installed and enabled in your browser.". The applet in question does not work either. Help :(
– schreon
Oct 22 '15 at 10:21
sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer
– Mudit Kapil Mar 15 '15 at 03:58