Home > Java > javaTutorial > body text

The preferred way to install and manage Java JDKs on Linux

Patricia Arquette
Release: 2024-10-31 05:09:30
Original
391 people have browsed it

The preferred way to install and manage Java JDKs on Linux

I'm on Fedora Workstation 40, but similar steps would work on most major Linux distros like Ubuntu/Mint etc

Check existing Java installation

On some Linux distros, Java comes installed by default; however it is just the JRE and not the JDK. You can verify this as java command is found but the javac command is NOT found.

java  # would show manual of arguments
javac # would give not found error if JDK not installed
Copy after login
Copy after login
Copy after login
java --version  # OR "java -version" for older java
javac --version
Copy after login
Copy after login
Copy after login

Refer these articles to know the differences between JDK, JRE and JVM:

  • Java Programming Environment and the Java Runtime Environment (JRE)
  • What are JDK, JRE, JVM and JIT in Java?

In Fedora, the JREs/JDKs are stored within /usr/lib/jvm. So you can look into it's contents or query them as:

find /usr/lib/jvm -name java
find /usr/lib/jvm -name javac
Copy after login
Copy after login
Copy after login

Installing an OpenJDK

I'm on Fedora 40 where the package manager is dnf. You would be installing your desired OpenJDK via your respective Linux distro's package manager (like apt for Ubuntu/Debian):

  • Search available JDKs to install:
  dnf search jdk
Copy after login
Copy after login
Copy after login

You would get a list of packages available to install having various Java versions as well as the variant suffix in the package. The headless variants usually just include the JRE. To install the full JDK with all the necessary tools for Java development, we need the development variant of the package, usually containing the -devel term suffix in the name for dnf. Here's a list of few package variant names for Java 17 OpenJDK from the dnf output:

  java-17-openjdk.x86_64 : OpenJDK 17 Runtime Environment
  java-17-openjdk-devel.x86_64 : OpenJDK 17 Development Environment
  java-17-openjdk-devel-fastdebug.x86_64 : OpenJDK 17 Development Environment optimised with full debugging on
  java-17-openjdk-devel-slowdebug.x86_64 : OpenJDK 17 Development Environment unoptimised with full debugging on
  java-17-openjdk-fastdebug.x86_64 : OpenJDK 17 Runtime Environment optimised with full debugging on
  java-17-openjdk-headless.x86_64 : OpenJDK 17 Headless Runtime Environment
  java-17-openjdk-headless-fastdebug.x86_64 : OpenJDK 17 Runtime Environment optimised with full debugging on
  java-17-openjdk-headless-slowdebug.x86_64 : OpenJDK 17 Runtime Environment unoptimised with full debugging on
  java-17-openjdk-javadoc.x86_64 : OpenJDK 17 API documentation
  java-17-openjdk-portable.x86_64 : OpenJDK 17 Runtime Environment portable edition
  java-17-openjdk-portable-devel.x86_64 : OpenJDK 17 Development Environment portable edition
  java-17-openjdk-portable-sources.x86_64 : OpenJDK 17 full patched sources of portable JDK
  java-17-openjdk-slowdebug.x86_64 : OpenJDK 17 Runtime Environment unoptimised with full debugging on
  java-17-openjdk-src.x86_64 : OpenJDK 17 Source Bundle
  java-17-openjdk-src-fastdebug.x86_64 : OpenJDK 17 Source Bundle for packages with debugging on and optimisation
  java-17-openjdk-src-slowdebug.x86_64 : OpenJDK 17 Source Bundle for packages with debugging on and no optimisation
Copy after login
Copy after login

On Ubuntu,, there are lesser packages and the one you want to install is typically named like openjdk-17-jdk for the whole JDK toolset

  • Install your desired OpenJDK package from that list
  # Installing the latest OpenJDK with optimized debugging
  sudo dnf install java-latest-openjdk-devel-fastdebug

  # Installing a specific version like OpenJDK 17
  sudo dnf install java-17-openjdk-devel
Copy after login
Copy after login
  • Verify installation by checking java and javac commands are found

Installing an Oracle JDK

  • Visit the Official Oracle SE Downloads Page. Locate your required Java version's downloads section

  • Download the appropriate package for your platform. For RedHat based Linux distros like Fedora, download the .rpm package (and .deb for Ubuntu/Debian). Before downloading, you'll have to sign-in to Oracle and agree to the terms

  • Double click on the downloaded file (like jdk-11.0.24_linux-x64_bin.rpm) and select Install. It will install and configure the Oracle JDK.

  • Now that OracleJDK is installed, verify the java and javac commands being detected

Installing JDKs via IntelliJ

You can also install JDKs from within IntelliJ itself:

  • Click on the Gear icon ⚙️ and then go into Project Structure. Select SDKs, click plus icon. Then select the JDK you wish to be downloaded and installed
  • The JDK is installed in the ~/.jdks folder, for example: ~/.jdks/openjdk-20.0.2/

IntelliJ auto-detects your available JDK locations on your system. You can also add your existing JDK folder locations like /usr/lib/jvm/jdk-11-oracle-x64 under configured JDKs in Project Structure


Working with multiple Java installations

The update-alternatives command in Linux (also called just alternatives in Fedora) creates, removes, maintains and displays information about the symbolic links comprising the alternatives system.

It is possible for several programs fulfilling the same or similar functions to be installed on a single system at the same time. A generic name in the filesystem is shared by all files providing interchangeable functionality. The alternatives system helps determine which actual file is referenced by this generic name.

Useful references:

  • update-alternatives - Linux manpage
  • Introduction to the alternatives command in Linux - RedHat

When you install OpenJDK via your package manager or Oracle-JDK from the downloaded file, the alternatives should automatically get updated during that process

View available options for a command

java  # would show manual of arguments
javac # would give not found error if JDK not installed
Copy after login
Copy after login
Copy after login

The output would look like:

java --version  # OR "java -version" for older java
javac --version
Copy after login
Copy after login
Copy after login

Similarly, see alternative options list for javac

Adding an alternatives entry for a command

If any alternative for your commands is NOT registered in the list, you can manually add them as:

find /usr/lib/jvm -name java
find /usr/lib/jvm -name javac
Copy after login
Copy after login
Copy after login

For example, I downloaded the JetBrains Runtime (JCEF) JDK from within IntelliJ, which was downloaded at ~/.jdks/jbrsdk_jcef-17.0.12/ folder; but it was not showing up in the alternatives list. So, I'll add the alternatives entry for java and javac as:

  dnf search jdk
Copy after login
Copy after login
Copy after login

Similarly, add alternatives for more commands like jar, javadoc etc. as required

You can also add follower links as:

--install link name path priority [--follower link name path]... [--initscript service] [--family name]

Switching between available alternatives of a command

Pick between Java installations present

  java-17-openjdk.x86_64 : OpenJDK 17 Runtime Environment
  java-17-openjdk-devel.x86_64 : OpenJDK 17 Development Environment
  java-17-openjdk-devel-fastdebug.x86_64 : OpenJDK 17 Development Environment optimised with full debugging on
  java-17-openjdk-devel-slowdebug.x86_64 : OpenJDK 17 Development Environment unoptimised with full debugging on
  java-17-openjdk-fastdebug.x86_64 : OpenJDK 17 Runtime Environment optimised with full debugging on
  java-17-openjdk-headless.x86_64 : OpenJDK 17 Headless Runtime Environment
  java-17-openjdk-headless-fastdebug.x86_64 : OpenJDK 17 Runtime Environment optimised with full debugging on
  java-17-openjdk-headless-slowdebug.x86_64 : OpenJDK 17 Runtime Environment unoptimised with full debugging on
  java-17-openjdk-javadoc.x86_64 : OpenJDK 17 API documentation
  java-17-openjdk-portable.x86_64 : OpenJDK 17 Runtime Environment portable edition
  java-17-openjdk-portable-devel.x86_64 : OpenJDK 17 Development Environment portable edition
  java-17-openjdk-portable-sources.x86_64 : OpenJDK 17 full patched sources of portable JDK
  java-17-openjdk-slowdebug.x86_64 : OpenJDK 17 Runtime Environment unoptimised with full debugging on
  java-17-openjdk-src.x86_64 : OpenJDK 17 Source Bundle
  java-17-openjdk-src-fastdebug.x86_64 : OpenJDK 17 Source Bundle for packages with debugging on and optimisation
  java-17-openjdk-src-slowdebug.x86_64 : OpenJDK 17 Source Bundle for packages with debugging on and no optimisation
Copy after login
Copy after login

The output would look like below. Note that * denotes best available version and denotes your current selection:

  # Installing the latest OpenJDK with optimized debugging
  sudo dnf install java-latest-openjdk-devel-fastdebug

  # Installing a specific version like OpenJDK 17
  sudo dnf install java-17-openjdk-devel
Copy after login
Copy after login

Similarly, choose among the alternative options for javac

When you uninstall/remove your JDK packages, remember to delete the respective alternatives entries too

Removing an alternatives entry

For example, to remove the JCEF JDK's java command alternative entry:

java  # would show manual of arguments
javac # would give not found error if JDK not installed
Copy after login
Copy after login
Copy after login

Add Java to PATH

This should not be necessary if you are following the update-alternatives method to manage between Java installations and all entries are complete

However, to manually set the configuration in your shell profile, you can do as below:

  • Set Environment Variables in your Shell config file (i.e. ~/.zshrc, ~/.bashrc etc.)
java --version  # OR "java -version" for older java
javac --version
Copy after login
Copy after login
Copy after login
  • Restart SHELL:
find /usr/lib/jvm -name java
find /usr/lib/jvm -name javac
Copy after login
Copy after login
Copy after login
  • Now, java should be detected successfully
  dnf search jdk
Copy after login
Copy after login
Copy after login

The above is the detailed content of The preferred way to install and manage Java JDKs on Linux. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template