Child pages
  • Install or Uninstall Java

Versions Compared

Key

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

...

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

...

InstallScripting
InstallScripting
Scripting

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

...

UninstallScripting
UninstallScripting
Scripting

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

...