Java: Difference between revisions
 (Created page with "=== Installation === Install Oracle JDK 8 (9 is scheduled for release in 2016)  su -  add-apt-repository ppa:webupd8team/java  apt-get update  apt-get install oracle-java8-ins...")  | 
				No edit summary  | 
				||
| Line 1: | Line 1: | ||
=== Installation ===  | === Installation ===  | ||
Install Oracle JDK   | [https://medium.com/coderscorner/installing-oracle-java-8-in-ubuntu-16-10-845507b13343 Install Oracle JDK 9] (considered stable in 3/2018)  | ||
  su -  |   su -  | ||
  add-apt-repository ppa:webupd8team/java  |   add-apt-repository ppa:webupd8team/java  | ||
Revision as of 18:46, 28 March 2018
Installation
Install Oracle JDK 9 (considered stable in 3/2018)
su - add-apt-repository ppa:webupd8team/java apt-get update apt-get install oracle-java8-installer apt-get install oracle-java8-set-default ctrl-D (back to user) update-alternatives --config java # make note of path update-alternatives --config javac # make note of path sudo subl /etc/environment JAVA_HOME="/usr/lib/jvm/java-8-oracle/jre/bin/java" # actually, use the path from above, of course