Child pages
  • Oracle JDK

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
themeEmacs
languagebash
sudo apt-get install oracle-java8-set-default

Below /etc/profile.d there are two files jdk.csh and jdk.sh who contains the environment variables definition, here is the content of jdk.sh :

Code Block
themeEmacs
languagebash
export J2SDKDIR=/usr/lib/jvm/java-8-oracle
export J2REDIR=/usr/lib/jvm/java-8-oracle/jre
export PATH=$PATH:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin
export JAVA_HOME=/usr/lib/jvm/java-8-oracle
export DERBY_HOME=/usr/lib/jvm/java-8-oracle/db

Verification

Make sure something silly didn't happen and your alternatives were set to Oracle Java:

...