OpenJDK 14 Download and Installation on Debian

OpenJDK Developers Guide

Quick guide to download and install OpenJDK 14 on Debian. - OpenJDK Community Version


What is OpenJDK


OpenJDK is the short form of Open Java Development Kit similar to Oracle's Java Development Kit used to develop Java Applications. Main difference between Oracle JDK and OpenJDK is that OpenJDK is free for all while Oracle Java Development Kit or Oracle JDK requires commercial license. For more details refer openjdk vs oracle jdk


If you want to know more about OpenJDK, you can go through Open Java Development Kit Quick guide.


Step #1: Download


Go to https://jdk.java.net/archive/ and download the OpenJDK 14 tar distribution openjdk-14+36_linux-x64_bin.tar.gz. Here is the quick lik to download the OpenJDK 14 tar file openjdk-14+36_linux-x64_bin.tar.gz




Step #2: Install



To Install OpenJDK 14 Java Runtime - Enter the below command on Debian command line.

$ sudo apt-get install openjdk-14-jre

The openjdk-14-jre package contains just the Java Runtime Environment. If you want to develop Java programs then please install the openjdk-14-jdk package.
To Install OpenJDK 14 Java Development Kit (JDK) - Enter the below command on Debian command line.

$ sudo apt-get install openjdk-14-jdk



Step #3: Configure / SET JAVA_HOME Path


Once the above steps are successfully completed , we need to set the "JAVA_HOME" and "PATH" environment variables. Enter the following commands to set your environment variables. Make sure that your environment variables point to a valid installation of JDK on your Debianmachine.

export JAVA_HOME=/usr/lib/jvm/openjdk-14-jdk


Add the JAVA bin directory to the PATH variable

export PATH=$PATH:$JAVA_HOME/bin


This will append the java bin directory to the existing PATH variable. You can also check the PATH variable by entering the following command



Step #4: Verify


Once the OpenJDK 14 Download and installation is complete, we can verify the installed OpenJDK 14 version using below Command.



Go to Debian prompt and type java -version
The above command prints the OpenJDK 14 version you installed.

Java -version
$ java -version
java version "14" 2020-03-17
Java(TM) SE Runtime Environment (build 14+36-1461)
Java HotSpot(TM) 64-Bit Server VM (build 14+36-1461, mixed mode, sharing)




Congratulations !!! Now you have installed OpenJDK 14 Successfully.

OpenJDK Known Issues


Note: Here is the list of OpenJDK known-issues OpenJDK Known Issues





Read Next:




OpenJDK On Windows





x