Ubuntu 14.04 Installing Java JDK (6 steps)

Source: Internet
Author: User
Tags root access

  1. Download the latest JDK version from Oracle with
  2. After downloading to get the file jdk-8u101-linux-x64.tar.gz (the file name may be different, the download extension is. tar.gz), the command line to enter the following code to extract the file to the current directory, you will get a folder named Jdk1.8.0_101
    tar -zxvf jdk-8u101-linux-x64. tar. gz
  3. Create a new folder in the/usr/lib directory Java (requires root access)
    cd/usr/libsudomkdir java
  4. Move Folder jdk1.8.0_101/to/usr/lib/java/
    sudo MV Jdk1. 8. 0_101//usr/lib/java
  5. then enter the following 3-line command
    sudoUpdate-alternatives--Install "/usr/bin/java" "Java" "/usr/lib/java/jdk1.8.0_101/bin/java" 1sudoUpdate-alternatives--Install "/usr/bin/javac" "Javac" "/usr/lib/java/jdk1.8.0_101/bin/javac" 1sudoUpdate-alternatives--Install "/usr/bin/javaws" "Javaws" "/usr/lib/java/jdk1.8.0_101/bin/javaws" 1
  6. Finally, set the environment variable, you need to edit the. bashrc file
    sudo gedit ~/.BASHRC

    Save it at the end of the file by adding 3 lines

    #JAVA HOME directory setupexport java_home=/usr/lib/java/jdk1. 8 . 0_101export PATH="$PATH: $JAVA _home/bin"

    Finally, the command line input java-version Test Installation Success!

Ubuntu 14.04 Installing Java JDK (6 steps)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.