冷月葬花魂 发表于 2015-1-14 20:37:01

来一发CentOS装置JDK8教程

如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!概述

纪录CentOS装置JDK8的历程。

软件情况

CentOS:6.5,x86-64位版本
JDK:8.0,x86-64位版本,rpm格局

装置

起首切换到root:
```
su-root
```
然后装置jdk:
```
rpm-ivhjdk-8-linux-x64.rpm

Preparing...###########################################
1:jdk###########################################
UnpackingJARfiles...
rt.jar...
Error:Couldnotopeninputfile:/usr/java/jdk1.8.0/jre/lib/rt.pack
Error:unpackcouldnotcreateJARfile:
/usr/java/jdk1.8.0/jre/lib/rt.jar
PleaserefertotheTroubleshootingsectionoftheInstallationInstructions
onthedownloadpage.
jsse.jar...
Error:Couldnotopeninputfile:/usr/java/jdk1.8.0/jre/lib/jsse.pack
Error:unpackcouldnotcreateJARfile:
/usr/java/jdk1.8.0/jre/lib/jsse.jar
PleaserefertotheTroubleshootingsectionoftheInstallationInstructions
onthedownloadpage.
charsets.jar...
Error:Couldnotopeninputfile:/usr/java/jdk1.8.0/jre/lib/charsets.pack
Error:unpackcouldnotcreateJARfile:
/usr/java/jdk1.8.0/jre/lib/charsets.jar
PleaserefertotheTroubleshootingsectionoftheInstallationInstructions
onthedownloadpage.
tools.jar...
Error:Couldnotopeninputfile:/usr/java/jdk1.8.0/lib/tools.pack
Error:unpackcouldnotcreateJARfile:
/usr/java/jdk1.8.0/lib/tools.jar
PleaserefertotheTroubleshootingsectionoftheInstallationInstructions
onthedownloadpage.
localedata.jar...
Error:Couldnotopeninputfile:/usr/java/jdk1.8.0/jre/lib/ext/localedata.pack
Error:unpackcouldnotcreateJARfile:
/usr/java/jdk1.8.0/jre/lib/ext/localedata.jar
PleaserefertotheTroubleshootingsectionoftheInstallationInstructions
onthedownloadpage.
jfxrt.jar...
Error:Couldnotopeninputfile:/usr/java/jdk1.8.0/jre/lib/ext/jfxrt.pack
Error:unpackcouldnotcreateJARfile:
/usr/java/jdk1.8.0/jre/lib/ext/jfxrt.jar
PleaserefertotheTroubleshootingsectionoftheInstallationInstructions
onthedownloadpage.
```
呈现下面的毛病是由于体系中已有JDK的其他版本,利用`rpm-qa|grepjdk`查询存在的jdk,并用`rpm-e`下令移除。以后再次实行装置,顺遂经由过程
```
Preparing...###########################################
1:jdk###########################################
UnpackingJARfiles...
rt.jar...
jsse.jar...
charsets.jar...
tools.jar...
localedata.jar...
jfxrt.jar...
```

设置情况变量

编纂情况变量,设置path和classpath。vi/etc/profile,增添上面设置:
```
exportJAVA_HOME=/usr/java/jdk1.8.0/
exportCLASSPATH=.:$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
exportPATH=$PATH:$JAVA_HOME/bin
```
保留加入后,实行`source/etc/profile`使变动失效。

检测装置的是不是准确,在shell中实行`java-version`和`javac-version`,假如shell显现以下的信息,暗示装置乐成:
```
#java-version
javaversion"1.8.0"
Java(TM)SERuntimeEnvironment(build1.8.0-b132)
JavaHotSpot(TM)64-BitServerVM(build25.0-b70,mixedmode)
#javac-version
javac1.8.0
```
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!

只想知道 发表于 2015-1-16 21:03:28

来一发CentOS装置JDK8教程

其中不乏很多IT精英的心血。我们学透以后更可以做成自己的OS!?

变相怪杰 发表于 2015-1-24 12:56:10

如果你有庞大而复杂的测试条件,尽量把它剪裁得越小越好。可能你会遇到这种情况,对于一个问题会出现不同内容回答,这时你需要通过实践来验证。

乐观 发表于 2015-2-1 16:44:10

最好先搜寻一下论坛是否有您需要的文章。这样可以获得事半功倍的效果。

小魔女 发表于 2015-2-7 12:53:38

我学习Linux的心得体会 ,希望对大家的学习有所帮助,由于水平有限,本文难免有所欠缺,望请指正。

莫相离 发表于 2015-3-7 03:24:40

Linux高手更具有鼓励新手的文化精神。如何在Linux社区获得帮助,需要说明的是你要有周全的思考,准备好你的问题,不要草率的发问。

第二个灵魂 发表于 2015-3-14 11:53:21

掌握硬件配置,如显卡,声卡,网卡等,硬件只要不是太老或太新一般都能被支持,作为一名Linux系统管理员建议多阅读有关硬件配置文章,对各种不支持或支持不太好的硬件有深刻的了解。

飘灵儿 发表于 2015-3-21 09:36:21

首先Linux是开源的,这也是最主要的原因,想学windows,Unix,对不起我们没源代码。也正是因为这样,Linux才能够像滚雪球一样越滚越大,发展到现在这种规模。
页: [1]
查看完整版本: 来一发CentOS装置JDK8教程