成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

Install Java 8 on Ubuntu

source / 1763人閱讀

摘要:

In this article, we will learn how to install Java 8 on Ubuntu OS. We will install JDK in Ubuntu. Java is a programming technology which is actually developed by Sun Microsystems. Java is free to download and use for commercial use.

Install Java 8 on Ubuntu
How to Install Java 8 on Ubuntu?

i) At first, we will download the package file from the official website.

http://www.oracle.com/technet... The download package is different for 64 bit and 32-bit versions.

ii) We will need some superuser privileges to install JDK. So we will use the following command-
sudo su

iii) The /opt directory is actually reserved for all the software and add-on packages. This software is not part of the default installation. The command for creating the directory for JDK installation is-

mkdir /opt/jdk

Creating a directory for JDK installation

iv) Then we will extract java into the /opt/jdk directory:

tar -zxf jdk-8u5-linux-x64.tar.gz -C /opt/jdk

Extract java into the /opt/jdk directory

v) Then we use the following command. This command verifies the file extraction into the /opt/jdk directory.

ls /opt/jdk

Verifies the file extraction into the /opt/jdk directory

vi) By default, we can find java executable in /opt/jdk/jdk1.8.0_05/bin/java directory. To set it as the default JVM we will use:

update-alternatives --install /usr/bin/java java /opt/jdk/jdk1.8.0_05/bin/java 100
update-alternatives --install /usr/bin/javac javac /opt/jdk/jdk1.8.0_05/bin/javac 100


Set the default JVM

Set the default JVM

vii) Then verify the java has been successfully configured. Run the following command-

update-alternatives --display java
update-alternatives --display javac



Verify the java has been successfully configured

Verify the java has been successfully configured

We can check installation by-

java -version

Check installation by java -version

viii) We can also update Java. Hence, download an updated version of Oracle’s website and extract to the /opt/jdk directory. After that, set it as the default JVM with a higher priority number:

update-alternatives --install /usr/bin/java java /opt/jdk/jdk.new.version/bin/java 110
update-alternatives --install /usr/bin/javac javac /opt/jdk/jdk.new.version/bin/javac 110

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/93257.html

相關(guān)文章

  • Install Java 8 on Ubuntu

    摘要: In this article, we will learn how to install Java 8 on Ubuntu OS. We will install JDK in Ubuntu. Java is a programming technology which is actually developed by Sun Microsystems. Java is free ...

    DoINsiSt 評(píng)論0 收藏0
  • sonarqube For PHP 代碼質(zhì)量管理

    摘要:如果有報(bào)錯(cuò)官方文檔即可是時(shí)候來(lái)張圖了具體的和漢化,可以通過(guò)頁(yè)面對(duì)應(yīng)的插件。 下載jdk&sonarqube&sonar-scanner 安裝jdk 基于ubuntu 16.04+apache[具體webserver采用缺省安裝]推薦下載安裝【底部有網(wǎng)盤地址】 sonarqube-5.6.6.zip jdk-8u121-linux-x64.tar.gz sonar-scanner-2...

    hzc 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

閱讀需要支付1元查看
<