您的位置:首页 > 运维架构 > Linux

How to install Java SDK on CentOS?(Centos安装JDK)

2017-03-15 13:22 459 查看
转自:http://stackoverflow.com/q/5104817

The following command will return a list of all packages directly related to Java. They will be in the format of java-.

$ yum search java | grep ‘java-’

If there are no available packages, then you may need to download a new repository to search through. I suggest taking a look at Dag Wieers’ repo. After downloading it, try the above command again.

You will see at least one version of Java packages available for download. Depending on when you read this, the lastest available version may be different.

java-1.7.0-openjdk.x86_64

The above package alone will only install JRE. To also install javac and JDK, the following command will do the trick:

$ yum install java-1.7.0-openjdk*

These packages will be installing (as well as their dependencies):

java-1.7.0-openjdk.x86_64

java-1.7.0-openjdk-accessibility.x86_64

java-1.7.0-openjdk-demo.x86_64

java-1.7.0-openjdk-devel.x86_64

java-1.7.0-openjdk-headless.x86_64

java-1.7.0-openjdk-javadoc.noarch

java-1.7.0-openjdk-src.x86_64

shareimprove this answer
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java centos