Install jdk on Ubuntu16
wikiHow to Install Oracle Java JDK on Ubuntu Linux
This tutorial will cover the installation of 32-bit and 64-bit Oracle Java 8 (currently version number 1.8.0_20) JDK on 32-bit and 64-bit Ubuntu operating systems. These instructions will also work on Debian and Linux Mint.
This article is for those who only want to install the Oracle Java JDK with the Oracle Java JRE included in the JDK download. Instructions for how to install Oracle Java JDK only on Debian based Linux operating systems such as Debian, Ubuntu and Linux Mint.
Steps
-
1Check to see if your Ubuntu Linux operating system architecture is 32-bit or 64-bit, open up a terminal and run the following command below.
- Type/Copy/Paste: file /sbin/init
- Note the bit version of your Ubuntu Linux operating system architecture it will display whether it is 32-bit or 64-bit.
- Type/Copy/Paste: file /sbin/init
-
2Check if you have Java installed on your system. To do this, you will have to run the Java version command from terminal.
- Open up a terminal and enter the following command:
- Type/Copy/Paste: java -version
- If you have OpenJDK installed on your system it may look like this:
- java version "1.7.0_15"
OpenJDK Runtime Environment (IcedTea6 1.10pre) (7b15~pre1-0lucid1)
OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode)
- java version "1.7.0_15"
- If you have OpenJDK installed on your system, you have the wrong vendor version of Java installed for this exercise.
- Open up a terminal and enter the following command:
-
3Completely remove the OpenJDK/JRE from your system and create a directory to hold your Oracle Java JDK/JRE binaries. This will prevent system conflicts and confusion between different vendor versions of Java. For example, if you have the OpenJDK/JRE installed on your system, you can remove it by typing the following at the command line:
- Type/Copy/Paste: sudo apt-get purge openjdk-\*
- This command will completely remove OpenJDK/JRE from your system
- Type/Copy/Paste: sudo mkdir -p /usr/local/java
- This command will create a directory to hold your Oracle Java JDK and JRE binaries.
- Type/Copy/Paste: sudo apt-get purge openjdk-\*
-
4Download the Oracle Java JDK for Linux. Make sure you select the correct compressed binaries for your system architecture 32-bit or 64-bit (which end in tar.gz).
- For example, if you are on Ubuntu Linux 32-bit operating system download 32-bit Oracle Java binaries.
- For example, if you are on Ubuntu Linux 64-bit operating system download 64-bit Oracle Java binaries.
- Optional, Download the Oracle Java JDK Documentation
- Select jdk-8u20-apidocs.zip
- Important Information: 64-bit Oracle Java binaries do not work on 32-bit Ubuntu Linux operating systems, you will receive multiple system error messages, if you attempt to install 64-bit Oracle Java on 32-bit Ubuntu Linux.
-
5Copy the Oracle Java binaries into the /usr/local/java directory. In most cases, the Oracle Java binaries are downloaded to: /home/"your_user_name"/Downloads.
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: cd /home/"your_user_name"/Downloads
- Type/Copy/Paste: sudo cp -r jdk-8u20-linux-i586.tar.gz /usr/local/java/
- Type/Copy/Paste: cd /usr/local/java
- 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: cd /home/"your_user_name"/Downloads
- Type/Copy/Paste: sudo cp -r jdk-8u20-linux-x64.tar.gz /usr/local/java/
- Type/Copy/Paste: cd /usr/local/java
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
-
6Unpack the compressed Java binaries, in the directory /usr/local/java
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: sudo tar xvzf jdk-8u20-linux-i586.tar.gz
- 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
- Type/Copy/Paste: sudo tar xvzf jdk-8u20-linux-x64.tar.gz
- 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
-
7Double-check your directories. At this point, you should have two uncompressed binary directories in /usr/local/java for the Java JDK/JRE listed as:
- Type/Copy/Paste: ls -a
- jdk1.8.0_20
- jre1.8.0_20
-
8Edit the system PATH file /etc/profile and add the following system variables to your system path. Use nano, gedit or any other text editor, as root, open up /etc/profile.
- Type/Copy/Paste: sudo gedit /etc/profile
- or
- Type/Copy/Paste: sudo nano /etc/profile
-
9Scroll down to the end of the file using your arrow keys and add the following lines below to the end of your /etc/profile file:
- Type/Copy/Paste:
JAVA_HOME=/usr/local/java/jdk1.8.0_20
JRE_HOME=/usr/local/java/jre1.8.0_20
PATH=$PATH:$JRE_HOME/bin:$JAVA_HOME/bin
export JAVA_HOME
export JRE_HOME
export PATH
- Type/Copy/Paste:
-
10Save the /etc/profile file and exit.
-
11Inform your Ubuntu Linux system where your Oracle Java JDK/JRE is located. This will tell the system that the new Oracle Java version is available for use.
- Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/java/jdk1.8.0_20/bin/java" 1
- this command notifies the system that Oracle Java JRE is available for use
- Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/local/java/jdk1.8.0_20/bin/javac" 1
- this command notifies the system that Oracle Java JDK is available for use
- Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/local/java/jdk1.8.0_20/bin/javaws" 1
- this command notifies the system that Oracle Java Web start is available for use
- Type/Copy/Paste: sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/java/jdk1.8.0_20/bin/java" 1
-
12Inform your Ubuntu Linux system that Oracle Java JDK/JRE must be the default Java.
- Type/Copy/Paste: sudo update-alternatives --set java /usr/local/java/jdk1.8.0_20/bin/java
- this command will set the java runtime environment for the system
- Type/Copy/Paste: sudo update-alternatives --set javac /usr/local/java/jdk1.8.0_20/bin/javac
- this command will set the javac compiler for the system
- Type/Copy/Paste: sudo update-alternatives --set javaws /usr/local/java/jdk1.8.0_20/bin/javaws
- this command will set Java Web start for the system
- Type/Copy/Paste: sudo update-alternatives --set java /usr/local/java/jdk1.8.0_20/bin/java
-
13Reload your system wide PATH /etc/profile by typing the following command:
- Type/Copy/Paste: source /etc/profile
- Note your system-wide PATH /etc/profile file will reload after reboot of your Ubuntu Linux system
- Test to see if Oracle Java was installed correctly on your system. Run the following commands and note the version of Java:
-
15A successful installation of 32-bit Oracle Java will display:
- Type/Copy/Paste: java -version
- This command displays the version of java running on your system
- You should receive a message which displays:
- java version "1.8.0_20"
Java(TM) SE Runtime Environment (build 1.8.0_20-b26)
Java HotSpot(TM) Server VM (build 25.20-b23, mixed mode)
- java version "1.8.0_20"
- Type/Copy/Paste: javac -version
- This command lets you know that you are now able to compile Java programs from the terminal.
- You should receive a message which displays:
- javac 1.8.0_20
- Type/Copy/Paste: java -version
-
16A successful installation of Oracle Java 64-bit will display:
- Type/Copy/Paste: java -version
- This command displays the version of java running on your system
- You should receive a message which displays:
- java version "1.8.0_20"
Java(TM) SE Runtime Environment (build 1.8.0_20-b26)
Java HotSpot(TM) Server VM (build 25.20-b23, mixed mode)
- java version "1.8.0_20"
- Type/Copy/Paste: javac -version
- This command lets you know that you are now able to compile Java programs from the terminal.
- You should receive a message which displays:
- javac 1.8.0_20
- Type/Copy/Paste: java -version
-
17Congratulations, you just installed Oracle Java on your Linux system. Now reboot your Ubuntu Linux system. Afterwards, your system will be fully configured for running and developing Java programs. Later on you may want to try compiling and running your own Java programs by following this article How to Create your First Java Program on Ubuntu Linux
Install jdk on Ubuntu16的更多相关文章
- How to install JDK (Java Development Kit) on Linux
This tutorial will guide you on how to install JDK (Java Development Kit) on Linux. Since I use Cent ...
- 【Linux】-NO.6.Linux.2.JDK.1.001-【CentOS 7 Install JDK 8u121】-
1.0.0 Summary Tittle:[Linux]-NO.6.Linux.2.JDK.1.001-[CentOS 7 Install JDK 8u121]- Style:Linux Series ...
- apt-get install jdk
怕忘记,记录下: sudo apt-get install python-software-properties sudo add-apt-repository ppa:webupd8team/jav ...
- centos install jdk
=========== 查询jdk版本 ===========yum search jdk =========== 安装jdk 64位开发版 ===========yum -y install jav ...
- Install JDK In Ubuntu
安装Linux软件包管理器rpm apt install rpm 查看已安装的软件,如JDK rpm -qa|grep jdk #查询所有 找jdk 卸载已安装的软件 rpm -e nodeps 包名 ...
- Ubuntu install JDK适合像我的小白
1.#下载JDK,记住保存的目录 2. sudo mkdir /usr/java 3. sudo tar zxvf jdk-7u75-linux-x64.tar.gz -C /usr/java 4. ...
- win10 install JDK&&JRE
重装系统后,安装的java环境没了,只能重装一下~~~~ 1.下载JDK 2.这里会安装两次,其中第一次为安装 JDK,第二次安装JRE,建议不要将这两个放在同一个文件夹. 3.配置环境变量 用鼠标右 ...
- centos7 install jdk
setp1: remove default java [lhs@localhost soft]$ rpm -qa | grep javajava-1.7.0-openjdk-1.7.0.75-2.5. ...
- Install zeal on ubuntu16.04
Dash is a helpful software for macOS users. For Windows and Linux users, zeal is the open-source cou ...
随机推荐
- 在PHP5.3以上版本运行ecshop出现的问题及解决方案
ecshop 问题一:商城首页报错 Strict Standards: Only variables should be passed by reference in D:\wamp\ecshop\ ...
- LocalStorage存储和cookie存储
localStorage是H5的新特性,主要用来本地存储,一般浏览器支持的大小是5M,不同浏览器会有所不同,解决了cookie存储空间不足的问题. 2.使用: ⑴.存 if(!window.l ...
- sqli-labs(十)(过滤注释符)
第二十三关: 这关还是一个GET型.字符串.单引符号.的有报错的sql注入,输入?id=1' ,页面会报错 我们继续按照之前的套路来,先输入?id=1' or '1'='1 页面正常显示,说明这个地 ...
- java微信小程序调用支付接口
简介:微信小程序支付这里的坑还是有的,所以提醒各位在编写的一定要注意!!! 1.首先呢,你需要准备openid,appid,还有申请微信支付后要设置一个32位的密钥,需要先生成一个sign,得到pre ...
- python绝对路径的表述方式 及 字符串的转义
当我们打开某文件的路径时,应该时刻注意绝对路径的表示方法,例如打开某个txt文件时 1, with open(‘d:\77\111.txt’) as f: f.read() 此时会报错 ,路径被反 ...
- Rpgmakermv(33) Mog_PictureGallery
============================================================================= +++ MOG - Picture Gall ...
- Deep Learning论文笔记之(四)CNN卷积神经网络推导和实现
https://blog.csdn.net/zouxy09/article/details/9993371 自己平时看了一些论文,但老感觉看完过后就会慢慢的淡忘,某一天重新拾起来的时候又好像没有看过一 ...
- 安装模块时报错“error: Microsoft Visual C++ 14.0 is required…”
安装pymssql时报错:在安装的过程中遇到了“error: Microsoft Visual C++ 14.0 is required…” 解决办法: 进入https://www.lfd.uci.e ...
- SLAM学习笔记 - ORB_SLAM2源码运行及分析
参考资料: DBow2的理解 单目跑TUM数据集的运行和函数调用过程 跑数据集不需要ros和相机标定,进入ORB_SLAM目录,执行以下命令: ./Examples/Monocluar/mono_tu ...
- 财务自由VS精神自由
财务自由 财务自由,在物质层面改善人的生活.它使人不愁生计.住更宽敞明亮的房间,穿锦衣绸缎,自由自在地游玩,做自己想做的事儿.可是,这就是它的能力所及了.钱无法改变人的品味.审美和人格.它也无法告诉人 ...