• slider image 168
:::
條列式新聞
新聞載入中,請稍後...

17-1 手動安裝 java jdk

參考文章:
http://www.wikihow.com/Install-Oracle-Java-JDK-on-Ubuntu-Linux
java 8 jdk 下載


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.
本教程將介紹32位和64位Oracle的Java8(目前版本號1.8.0_20)JDK的32位和64位的Ubuntu操作系統的安裝。這些指令也將在Debian和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.
這篇文章是為那些誰只是想與包含在JDK的下載了甲骨文的Java JRE安裝Oracle的Java JDK。說明如何只在基於Debian的Linux操作系統,比如Debian,Ubuntu和Linux Mint的安裝Oracle的Java JDK。
Steps
步驟

  1. 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.
    1. Type/Copy/Paste: file /sbin/init
      1. Note the bit version of your Ubuntu Linux operating system architecture it will display whether it is 32-bit or 64-bit.

         
  2. 2Check if you have Java installed on your system. To do this, you will have to run the Java version command from terminal.
    1. Open up a terminal and enter the following command:
      1. Type/Copy/Paste: java -version
    2. If you have OpenJDK installed on your system it may look like this:
      1. 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)

         
    3. If you have OpenJDK installed on your system, you have the wrong vendor version of Java installed for this exercise.

       
  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:
     
    1. Type/Copy/Paste: sudo apt-get purge openjdk-\*
      1. This command will completely remove OpenJDK/JRE from your system
         
    2. Type/Copy/Paste: sudo mkdir -p /usr/local/java
      1. This command will create a directory to hold your Oracle Java JDK and JRE binaries.

         
  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).
     
    1. For example, if you are on Ubuntu Linux 32-bit operating system download 32-bit Oracle Java binaries.
    2. For example, if you are on Ubuntu Linux 64-bit operating system download 64-bit Oracle Java binaries.
    3. Optional, Download the Oracle Java JDK Documentation
      1. Select jdk-8u20-apidocs.zip
         
    4. 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. 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.
    1. 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
      1. Type/Copy/Paste: cd /home/"your_user_name"/Downloads
      2. Type/Copy/Paste: sudo cp -r jdk-8u20-linux-i586.tar.gz /usr/local/java/
      3. Type/Copy/Paste: cd /usr/local/java

    2. 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
      1. Type/Copy/Paste: cd /home/"your_user_name"/Downloads
      2. Type/Copy/Paste: sudo cp -r jdk-8u20-linux-x64.tar.gz /usr/local/java/
      3. Type/Copy/Paste: cd /usr/local/java

  6. Unpack the compressed Java binaries, in the directory /usr/local/java
    1. 32-bit Oracle Java on 32-bit Ubuntu Linux installation instructions:
      1. Type/Copy/Paste: sudo tar xvzf jdk-8u20-linux-i586.tar.gz
         
    2. 64-bit Oracle Java on 64-bit Ubuntu Linux installation instructions:
      1. Type/Copy/Paste: sudo tar xvzf jdk-8u20-linux-x64.tar.gz

  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:
    1. Type/Copy/Paste: ls -a
      jdk1.8.0_20    -> 我的只有這個
      jre1.8.0_20
  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.
    1. Type/Copy/Paste: sudo gedit /etc/profile
      or
    2. Type/Copy/Paste: sudo nano /etc/profile
      or​
    3. Type/Copy/Paste: sudo pico /etc/profile
       
  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:
     
    1. Type/Copy/Paste:
      JAVA_HOME=/usr/local/java/jdk1.8.0_20
      PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
      export JAVA_HOME
      export PATH


       
  10. Save the /etc/profile file and exit.

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

       
    2. 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
       
    3. 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. Inform your Ubuntu Linux system that Oracle Java JDK/JRE must be the default Java.
    1. 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

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

       
    3. 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. Reload your system wide PATH /etc/profile by typing the following command:
    1. Type/Copy/Paste: source /etc/profile
    2. Note your system-wide PATH /etc/profile file will reload after reboot of your Ubuntu Linux system

  14. Test to see if Oracle Java was installed correctly on your system. Run the following commands and note the version of Java:
     
  15. A successful installation of 32-bit Oracle Java will display:
    1. Type/Copy/Paste: java -version
      This command displays the version of java running on your system
       
    2. 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)

       
    3. Type/Copy/Paste: javac -version
      This command lets you know that you are now able to compile Java programs from the terminal.
       
    4. You should receive a message which displays:
      javac 1.8.0_20

  16. A successful installation of Oracle Java 64-bit will display:
    1. Type/Copy/Paste: java -version
      This command displays the version of java running on your system
       
    2. 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)

       
    3. Type/Copy/Paste: javac -version
      This command lets you know that you are now able to compile Java programs from the terminal.
       
    4. You should receive a message which displays:
      javac 1.8.0_20

  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

     
  18. Optional: How to enable Oracle Java in your Web Browsers
    1. To enable your Java plug-in in your web browsers you must make a symbolic link from the web browsers plug-in directory to the location of the Java plug-in included in your distribution of Oracle Java.
       
    2. Important Note: I would urge caution when enabling Oracle Java 7 in your web browsers, due to the fact there have been many numerous security flaws and exploits. Essentially, by enabling Oracle Java 7 in your web browsers if a security flaw or exploit is discovered this is how the bad guys break in and compromise your system. For more information on security flaws and exploits in Java see the following website: Java Tester
  19. Google Chrome
    1. 32-bit Oracle Java instructions:
      1. Issue the following commands.
        1. Type/Copy/Paste: sudo mkdir -p /opt/google/chrome/plugins
          1. this will create a directory called /opt/google/chrome/plugins
        2. Type/Paste/Copy: cd /opt/google/chrome/plugins
          1. this will change you into the google chrome plugins directory,make sure you are in this directory before you make the symbolic link
        3. Type/Paste/Copy: sudo ln -s /usr/local/java/jdk1.8.0_20/jre/lib/i386/libnpjp2.so
          1. this will create a symbolic link from the Java JRE( Java Runtime Environment ) plugin libnpjp2.so to your Google Chrome web browser
             
      2. 64-bit Oracle Java instructions:
        1. Issue the following commands.
          1. Type/Copy/Paste: sudo mkdir -p /opt/google/chrome/plugins
            1. this will create a directory called /opt/google/chrome/plugins
          2. Type/Paste/Copy: cd /opt/google/chrome/plugins
            1. this will change you into the google chrome plugins directory,make sure you are in this directory before you make the symbolic link
          3. Type/Paste/Copy: sudo ln -s /usr/local/java/jdk1.8.0_20/jre/lib/amd64/libnpjp2.so
            1. this will create a symbolic link from the Java JRE( Java Runtime Environment ) plugin libnpjp2.so to your Google Chrome web browser
      3. Reminders:
        1. Note: Sometimes when you issue the above command you may receive a message which states:
          1. ln: creating symbolic link `./libnpjp2.so': File exists
          2. To correct this issue simply remove the previous symbolic link using the following command:
          3. Type/Copy/Paste: cd /opt/google/chrome/plugins
          4. Type/Copy/Paste: sudo rm -rf libnpjp2.so
          5. Make sure you are in the /opt/google/chrome/plugins directory before you issue the command
        2. Restart your web browser and go to Java Tester to test if Java is functioning in your web browser.

  20. Mozilla Firefox
    1. 32-bit Oracle Java instructions:
      1. Issue the following commands.
        1. Type/Paste/Copy: cd /usr/lib/mozilla/plugins
          1. this will change you into the directory /usr/lib/mozilla/plugins, create this directory if you do not have it
        2. Type/Paste/Copy: sudo mkdir -p /usr/lib/mozilla/plugins
          1. this will create the directory /usr/lib/mozilla/plugins, make sure you are in this directory before you make the symbolic link
        3. Type/Paste/Copy: sudo ln -s /usr/local/java/jdk1.8.0_20/jre/lib/i386/libnpjp2.so
          1. this will create a symbolic link from the Java JRE( Java Runtime Environment ) plugin libnpjp2.so to your Mozilla Firefox web browser
    2. 64-bit Oracle Java instructions:
      1. Issue the following commands.
        1. Type/Paste/Copy: cd /usr/lib/mozilla/plugins
          1. this will change you into the directory /usr/lib/mozilla/plugins, create this directory if you do not have it
        2. Type/Paste/Copy: sudo mkdir -p /usr/lib/mozilla/plugins
          1. this will create the directory /usr/lib/mozilla/plugins, make sure you are in this directory before you make the symbolic link
             
        3. Type/Paste/Copy: sudo ln -s /usr/local/java/jdk1.8.0_20/jre/lib/amd64/libnpjp2.so
          1. this will create a symbolic link from the Java JRE( Java Runtime Environment ) plugin libnpjp2.so to your Mozilla Firefox web
             
    3. browserReminders:
      1. Note: Sometimes when you issue the above command you may receive a message which states:
        1. ln: creating symbolic link `./libnpjp2.so': File exists
        2. To correct this issue simply remove the previous symbolic link using the following command:
          1. Type/Copy/Paste: cd /usr/lib/mozilla/plugins
          2. Type/Copy/Paste: sudo rm -rf libnpjp2.so
          3. Make sure you are in the /usr/lib/mozilla/plugins directory before you issue the command
      2. Restart your web browser and go to Java Tester to test if Java is functioning in your web browser.

 


:::
展開 | 闔起

文章類別

書籍目錄

展開 | 闔起

線上使用者

9人線上 (9人在瀏覽線上書籍)

會員: 0

訪客: 9

更多…