1

How To Install Java 14 on Ubuntu / Debian

 2 years ago
source link: https://computingforgeeks.com/how-to-install-java-14-on-ubuntu-debian/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
How To Install Java 14 on Ubuntu

In this article you’ll learn how to install Oracle Java 14 on Ubuntu / Debian Linux machine. Java is one of the most used programming languages adopted for building business applications, generic Desktop applications, Web apps, Games among many others. JDK 14 is the open-source reference implementation of version 14 of the Java SE Platform as specified by by JSR 388 in the Java Community Process.

You can read the release notes on JDK 14 to get a view of new and interesting features. You can choose to install JDK 14 or the Oracle Java SE Development Kit 14 on Debian / Ubuntu Linux system.

Method 1: Install Java 14 on Ubuntu from PPA repository

The Linux Uprising team provides a PPA repository with pre-built Java binary packages. You can add the repository using the command below.

sudo apt update
sudo add-apt-repository ppa:linuxuprising/java

If you don’t have the add-apt-repository command, check the article on how to add add-apt-repository to Ubuntu / Debian system.

Once the repository is added, proceed to install Oracle Java 14 on Ubuntu Linux.

sudo apt -y install oracle-java14-installer

To set Oracle JDK 14 as default, install the “oracle-java14-set-default” package.

sudo apt -y install oracle-java14-set-default

Confirm your 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)

Then set Java environment.

sudo nano /etc/profile.d/jdk.sh
export JAVA_HOME=/usr/lib/jvm/java-14-oracle
export PATH=$PATH:$JAVA_HOME/bin

Update your environment:

source /etc/profile.d/jdk.sh

Method 2: Install OpenJDK 14 on Ubuntu / Debian manually

The JDK 14 releases are available on the releases & downloads page. We’ll download the latest available version using curl.

curl -O https://download.java.net/java/GA/jdk14/076bab302c7b4508975440c56f6cc26a/36/GPL/openjdk-14_linux-x64_bin.tar.gz

Extract the downloaded OpenJDK 14 archive file using tar command.

tar xvf openjdk-14_linux-x64_bin.tar.gz

Move the resulting folder to /opt directory.

sudo mv jdk-14 /opt/

Configure Java environment:

sudo tee /etc/profile.d/jdk14.sh <<EOF
export JAVA_HOME=/opt/jdk-14
export PATH=\$PATH:\$JAVA_HOME/bin
EOF

Source your profile file and check java command

source /etc/profile.d/jdk14.sh

Confirm Java version.

$ echo $JAVA_HOME
/opt/jdk-14

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

You now have Java 14 / JDK 14 installed on Debian / Ubuntu Linux Desktop or server edition.

Video Courses to Learn Java Programming Language:

For installation on CentOS / Fedora Linux, check.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK