How to install JDK 13 in Linux environment using compressed package

How to install JDK 13 in Linux environment using compressed package

What is JDK?

Well, if you don't know this question, I really don't know why you would install this thing.

JDK (Java Development Kit) is an object-oriented programming language development toolkit launched by Sun (later acquired by Oracle). With this toolkit, we can use Java language for program design and development.

Today we are going to deploy this thing in the Linux environment so that we can carry out development, and we are going to install it by unzipping the compressed package. The reason why we don't use the rpm method to install it is mainly to make it universal on all Linux systems. rpm and deb can only be installed on the Linux systems of Red Hat and Debian respectively, and there will be problems with conversion between them. However, there is no such problem when using a compressed package, although it is relatively cumbersome.

Operating system: CentOS Linux Release 8.0.1905 (Core)

Environment: Virtual Box virtual machine

What if I just want Java programs to run on my computer? ?

If you are too lazy to look for or cannot find the JRE installation tutorial, you can just follow this process to ensure that your Java program can actually run, but your Linux operating system will have a lot of extra things that you don't actually need.

What if I want to install a different version? ?

JDK 8 and earlier versions may differ from this. Please refer to other installation procedures specifically for JDK 8.
The process should not be much different for JDK 10 and above, but please be sure to pay attention to some locations that need to be replaced with your current version code when referring to it.

Why would you want to install it on Linux? ? Don't you prefer to use Eclipse for Java development on Windows platform? ?
You have a lot of questions. You are right, but in special situations, I have to take some actions that I "don't like".
This is one of them, because I need to deploy Hadoop on Linux platform, and there is no Java environment in the newly installed CentOS:

[user@localhost /]$ java -version

bash: java: command not found...

Java SE is a prerequisite for Hadoop

And if it is deployed well, I can also use Linux for Java development, isn’t that great? ?

But it seems that there are a lot of similar tutorials on the Internet.

When did I say this was a tutorial? ? This is just a record of my process. If possible, I also hope that it can serve as a reference for others. I also referred to many people's installation processes, and finally I succeeded.

Standing on the shoulders of countless giants.

Okay, without further ado, let’s get started.

Yes, it is true. First, you need to install a Linux system. It doesn't have to be CentOS. It can be Ubuntu, Fedora, Debian, etc. It doesn't matter whether you use a GUI or not, because even if I installed a CentOS with a GUI, my installation process was actually completed using bash commands.
Before we actually proceed with the installation, I must state in advance:

Unlike Windows, Linux is case-sensitive, which means that /Somewhere/a.zip and /somewhere/A.zip are not in the same directory and are not the same file name. Please pay attention to this! ! !
The actual content of all shell instructions that appear below starts after $.

As for whether you are using a physical machine or a virtual machine, the difference should not be big. You can actually use a USB drive to install it, or you can download VMWare or Virtual Box or something like that. I won’t explain it here.

Download the JDK compressed package

In short, I have installed CentOS 8. Of course, you may use Ubuntu 16.04 or something else. Next, download a JDK13 compressed package (jdk-13_linux-x64_bin.tar.gz) from the Internet.

Here we assume that you have downloaded the compressed package to the /usr/download directory regardless of whether you are using GUI download or wget download method.

If your Linux system has a GUI and Firefox came pre-installed, you can use Firefox to quickly go to the JDK download address just like in Windows, like this:

If you don't have a GUI, you can use wget:

[user@localhost /usr/lib/jvm/jdk-13]$ su root # whole process needs to be performed with root privileges, because ordinary users cannot modify the usr, etc folders and their subfolders

[root@localhost /]$ mkdir /usr/download # If you don't have this directory, type this command first, otherwise go to the next sentence [root@localhost /]$ cd /usr/download
[root@localhost /usr/download]$ wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/13+33/5b8a42f3905b406298b72d750b6919f6/jdk-13_linux-x64_bin.tar.gz

Note: Because Oracle's official website requires you to log in to your Oracle account to download JDK and other content, just type

wget https://download.oracle.com/otn-pub/java/jdk/13+33/5b8a42f3905b406298b72d750b6919f6/jdk-13_linux-x64_bin.tar.gz

The downloaded jdk-13_linux-x64_bin.tar.gz is only 5KB (actually it should be 180MB). That thing is not a compressed package at all but a request page. So if you download through the command line, you can only download it in the above way

After downloading, check the properties of jdk-13_linux-x64_bin.tar.gz:

[root@localhost /]$ ls -al jdk-13_linux-x64_bin.tar.gz
-rw-rw-r--. 1 user user 188711447 Sep 19 11:13 jdk-13_linux-x64_bin.tar.gz

In some Linux operating systems, the file name position is displayed in red at this time, which means:

This is a compressed file

So don't worry, this is not an error and you can proceed.

If you find that 188711447 (about 180MB) is replaced by 5307 (about 5KB) (that is, the file sizes are seriously inconsistent), it means that your download link is wrong. Please read the content in the "Note" above carefully and then delete this file with rm jdk-13_linux-x64_bin.tar.gz and download it again. If the sizes are inconsistent but similar, it is possible that you downloaded a different version, or the compressed package may be damaged. If it is the latter, please download it again.

Unzip the files in the JDK installation package

Next, use the tar command to decompress the compressed package and unzip it to the /usr/lib/jvm directory:

[root@localhost /usr/download]$ mkdir /usr/lib/jvm
[root@localhost /usr/download]$ tar -xf jdk-13_linux-x64_bin.tar.gz -C /usr/lib/jvm #-- Please wait patiently for this step, it will take a while [root@localhost /usr/download]$ cd /usr/lib/jvm
[root@localhost /usr/lib/jvm]$ ls
jdk-13

You will see a folder called jdk-13 under /usr/lib/jvm. Let's go in and take a look.

[root@localhost /usr/lib/jvm]$ cd jdk-13
[root@localhost /usr/lib/jvm/jdk-13]$ ls
bin conf include jmods legal lib man release

At this point, all components of JDK are ready, and the next step is to configure them.

Add environment variables

Note: This requires the use of VIM

If you can use VIM

Ah, no problem, go ahead if you don't know how to use VIM
If you are using a Linux system with a GUI interface, you can use the pre-installed text editor to edit it, just like using Notepad in Windows.
Otherwise if you want to learn VIM
Find other people's tutorials to see the basic operation methods of VIM. Otherwise, if you have a trustworthy and capable friend, ask him to help you. Otherwise
Emmm... I sincerely feel sorry for you. When installing using the installer under Windows, the environment variables are generally configured automatically, but unfortunately we are now installing manually, and the work of JDK depends on the paths in a large number of environment variables.

It seems that all Oracle software is in this state, such as Oracle DB...

JDK requires several environment variables:

JAVA_HOME : The home directory of Java, where the jdk-13 folder you unzipped the compressed package is located (and contains jdk-13 itself)
JRE_HOME: The home directory of JRE. JRE is the most basic software environment for running Java applications, so if you just want Java programs to run, you don’t need to install JDK at all, even though JDK contains JRE.
CLASSPATH: The location of the standard or public class libraries provided by Java
PATH: This is the system environment variable. It just tells the system where your Java development environment is installed. This allows you to directly execute Java development tools such as javac in any directory. You can execute it by typing javac directly without having to retype /usr/lib/jvm/jdk-13/bin/javac.

The environment variables under the Linux system are stored in several files, and their scopes of application are different. Some only apply to the current user, while others apply to all users. The environment here can be directly effective for all users (because I am the only user besides root), so here we will modify /etc/profile.

But now we know that JAVA_HOME=/usr/lib/jvm/jdk-13, this directory means that it contains everything related to the Java runtime environment. Let's see what's in it.

[user@localhost /usr/lib/jvm/jdk-13]$ ls
bin conf include jmods legal lib man release

Among them, bin is the directory where all Java development tools (usually executable applications) are located, and lib contains the public class libraries provided by Java. Of course, this is the CLASSPATH we are looking for.
So, what about JRE_HOME? ?
As early as JDK 8, a folder called jre could be found under the installed JAVA_HOME, but when it comes to JDK 13, I just looked at it, where is the jre? ?

In fact, there is no need to consider this problem, because the new version of JDK not only comes with JRE, but also integrates the JRE component directly into JDK, so JRE_HOME can be directly changed to JAVA_HOME.

So we use VIM to open /etc/profile (because it is) for editing:

[root@localhost /usr/lib/jvm/jdk-13]$ vim /etc/profile

Add the following to the beginning of this file:

export JAVA_HOME=/usr/lib/jvm/jdk-13
export JRE_HOME=/${JAVA_HOME}
export CLASSPATH=.:${JAVA_HOME}/libss:${JRE_HOME}/lib
export PATH=${JAVA_HOME}/bin:$PATH

Then type :wq to save and exit. However, since these environment variables are only written in the file, they are not actually built into the kernel, so you need to execute this file manually.

[root@localhost /usr/lib/jvm/jdk-13]$ source /etc/profile
[root@localhost /usr/lib/jvm/jdk-13]$ exit #Exit root privileges


At this point, the installation process is complete and JDK can work normally. We can check it with the following command:

[user@localhost /usr/lib/jvm/jdk-13]$ java -version

Now we can use JDK13 for development on Linux systems.

Now that it's installed, let's give it a try!
You are right! ! Now that we are ready to go, let's write a Java program to test it out!
Create a folder somewhere and write a Hello World to give it a try:

[user@localhost /usr/lib/jvm/jdk-13]$ mkdir ~/jsrc
[user@localhost /usr/lib/jvm/jdk-13]$ cd ~/jsrc
[user@localhost ~/jsrc]$ vim Hello.java
/// Hello.java

public class Hello
{
 public static void main(String args[])
 {
 System.out.println("Hello");
 }
}
[user@localhost ~/jsrc]$ javac Hello.java
[user@localhost ~/jsrc]$ ls
Hello.class Hello.java
[user@localhost ~/jsrc]$ java Hello
Hello 

Summarize

The above is the method that the editor introduced to you to install JDK 13 in a compressed package in a Linux environment. I hope it will be helpful to you!

You may also be interested in:
  • Linux jdk installation and environment variable configuration tutorial (jdk-8u144-linux-x64.tar.gz)
  • Detailed tutorial on installing JDK8 on Linux system (CentOS7 installation)
  • Detailed steps for installing JDK and Tomcat on Linux cloud server (recommended)
  • Detailed explanation of installing jdk1.8 and configuring environment variables in a Linux-like environment
  • Detailed tutorial on installing JDK1.8 on Linux
  • How to install and configure JDK in virtual machine Linux
  • Two methods to install JDK on Linux server (yum+download package)
  • Tutorial on installing jdk1.8 and configuring environment variables under Linux
  • Linux system (Centos6.5 and above) installation jdk tutorial analysis

<<:  JavaScript+html to implement front-end page sliding verification

>>:  MySQL data insertion efficiency comparison

Recommend

MySQL5.7 single instance self-starting service configuration process

1.MySQL version [root@clq system]# mysql -v Welco...

Explanation of the usage scenarios of sql and various nosql databases

SQL is the main trunk. Why do I understand it thi...

MySQL paging performance exploration

Several common paging methods: 1. Escalator metho...

Practical tutorial on modifying MySQL character set

Preface: In MySQL, the system supports many chara...

Learn Node.js from scratch

Table of contents url module 1.parse method 2. fo...

Detailed explanation of docker's high availability configuration

Docker Compose Docker Compose divides the managed...

Detailed description of shallow copy and deep copy in js

Table of contents 1. js memory 2. Assignment 3. S...

Linux/Mac MySQL forgotten password command line method to change the password

All prerequisites require root permissions 1. End...

Implementation example of Docker rocketmq deployment

Table of contents Preparation Deployment process ...

Html easily implements rounded rectangle

Question: How to achieve a rounded rectangle usin...

JavaScript to implement the countdown for sending SMS

This article shares the specific code of JavaScri...

A "classic" pitfall of MySQL UPDATE statement

Table of contents 1. Problematic SQL statements S...

How to find and delete duplicate rows in MySQL

Table of contents 1. How to find duplicate rows 2...

MySQL slow_log table cannot be modified to innodb engine detailed explanation

background Getting the slow query log from mysql....