Child pages
  • Install or Uninstall Java

Versions Compared

Key

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

...

After checking your Java Environment, downloaded and installed either an 3 - Oracle JDK or an 4 - Open JDK, now it's time to pack everything together.

...

Code Block
languagebash
themeEmacs
user@machine:~$ update-alternatives --list java
/usr/lib/jvm/default-java/jre/bin/java
/usr/lib/jvm/java-8-openjdk-i386/jre/bin/java
/usr/lib/jvm/java-8-oracle/jre/bin/java
/usr/lib/jvm/ramdisk-java-8-oracle/jre/bin/java

Anchor
installDefaultJavaAlternatives.sh
installDefaultJavaAlternatives.sh
installDefaultJavaAlternatives.sh

Doing this task one by one is pretty tedious, we provide a shell script ito facilitate the work.

...

Code Block
languagebash
themeEmacs
sudo update-alternatives --remove "java" "/usr/lib/jvm/default-java/jre/bin/java";

Anchor
removeDefaultJavaAlternatives.sh
removeDefaultJavaAlternatives.sh
removeDefaultJavaAlternatives.sh

Doing this task one by one is pretty tedious, we provide a shell script ito facilitate the work.

...