Versions Compared

Key

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

...

To update the Java version for DMC from 11.0.8 to a different 11.x version, do the following steps in order (fill in the actual java version number in the commands below):

  1. From the terminal create a directory for your new Java 11.x version, run mkdir java<version>

  2. Navigate to your new directory, run cd java<version>

  3. Download the OpenJDK<version>.tar.gz file for the Java 11.x version you want to use and put it in your new java<version> directory.
    Example:

    Code Block
    wget https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.8+10/OpenJDK11U-jre_x64_linux_hotspot_11.0.8_10.tar.gz

Note: For more information on how to download and install prebuilt OpenJDK packages, see the OpenJDK installation page.

4. Run the following commands so DMC will use the other 11.x version of Java (that you already downloaded):

...