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

  1. 1

    Check 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.

  2. 2

    Check 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)
    • If you have OpenJDK installed on your system, you have the wrong vendor version of Java installed for this exercise.

  3. 3

    Completely 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.

  4. 4

    Download 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.

  5. 5

    Copy 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

  6. 6

    Unpack 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

  7. 7

    Double-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

  8. 8

    Edit 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

  9. 9

    Scroll 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

  10. 10

    Save the /etc/profile file and exit.

  11. 11

    Inform 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

  12. 12

    Inform 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

  13. 13

    Reload 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

  14.  
  1. Test to see if Oracle Java was installed correctly on your system. Run the following commands and note the version of Java:

  2. 15

    A 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)
    • 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

  3. 16

    A 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)
    • 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

  4. 17

    Congratulations, 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

时间: 2024-08-09 15:35:54

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 Centos 5.4 x86_64 in everyday life, this guide is showing you how to install JDK in Centos 5.4 64bit. It must work in any other Linux distro such as Slack

ubuntu install jdk

1.Add the PPA: $ sudo add-apt-repository ppa:webupd8team/java 2.Update the repo index: $ sudo apt-get update 3.install jdk: Install Java 8 $ sudo apt-get install oracle-java8-installer Or, install Java 7: $ sudo apt-get install oracle-java7-installer

apt-get install jdk

怕忘记,记录下: sudo apt-get install python-software-properties sudo add-apt-repository ppa:webupd8team/java sudo apt-get update Oracle JDK 6(旧版本) sudo apt-get install oracle-java6-installer Oracle JDK 7(较新的稳定版本) sudo apt-get install oracle-java7-installer

Install JDK 8 on Ubuntu 14.04

Ubuntu Trusty (14.04 LTS). OpenJDK 8 is not available on Trusty. To install Oracle JDK 8: $ sudo apt-get install software-properties-common swig$ sudo add-apt-repository ppa:webupd8team/java $ sudo apt-get update $ sudo apt-get install oracle-java8-i

centos install jdk

方法一:手动解压JDK的压缩包,然后设置环境变量 1.在/usr/目录下创建java目录  [[email protected] ~]# mkdir/usr/java [[email protected] ~]# cd /usr/java 2.下载,然后解压 [[email protected] java]# curl -O http://download.oracle.com/otn-pub/java/jdk/7u79-b15/jdk-7u79-linux-x64.tar.gz [[email

jdk silent install - JDK的静默安装

环境: 虚拟机vbox, 虚拟系统 win7_x64  jdk-6u45-windows-x64.exe Java 安装是使用 Microsoft Window Installer (MSI) 2.0 技术构建的.MSI 包含对静默或无人参与安装的内置支持. JDK silent install 使用的command line为: start /w \\VBOXSVR\tools\tools\jdk-6u45-windows-x64.exe /lang=<语言代码> /L "d:\t

linux 安装jdk(install jdk)

yum -y install java-1.7.0-openjdk-devel.x86_64  使用这个命令比较好.使用其他命令出现 没有javac命令的情况,特地把之前安装的jdk卸载了才有用. 安装完毕,配置环境变量 vi /etc/profile #set java environmentJAVA_HOME=/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.75.x86_64JRE_HOME=$JAVA_HOME/jreCLASS_PATH=.:$JAVA_HOM

Ubuntu install JDK适合像我的小白

1.#下载JDK,记住保存的目录 2. sudo mkdir /usr/java 3. sudo tar zxvf jdk-7u75-linux-x64.tar.gz -C /usr/java 4. cd /usr/java 5. sudo gedit /etc/environment 6.#将文件内的内容删除,把下面的copy进去,红色的换成最新版 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/g

Ubantu install jdk

我们在64位的Ubuntu中安装JDK,选择的是jdk1.6.0_32版本.安装文件名为jdk-6u32-linux-x64.bin(这个是64位系统的),如果是32位系统的还需要去官网下载32位的JDK Ubuntu 64位系统的JDK下载地址: http://download.csdn.net/download/nourewang/4347727 Ubuntu 32位系统的JDK下载地址: http://download.csdn.net/download/xuechongjie/46046