centos安装jdk1.8
操作系统:centos7软件:jdk1.8
这里简单记录了当时自己安装jdk1.8的过程。
将jdk解压至/usr/local/路径下
$ tar -zxvf jdk-8u152-linux-x64.tar.gz -C /usr/local/
设置环境变量
$ vim /etc/profile
末尾加入
export JAVA_HOME=/usr/share/jdk1.8.0_152export JRE_HOME=${JAVA_HOME}/jreexport PATH=$JAVA_HOME/bin:$PATHexport CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
使环境变量生效
$ source /etc/profile
添加软连接
$ ln -s /usr/local/jdk1.8.0_152/bin/java /usr/bin/java
检查是否安装成功
$ java -version
我的第一篇博客
欢迎来到我的博客,建站费了一些功夫,好在终于弄完了。主要记录兴趣,生活和技术笔记,希望多多交流。
最后,欢迎来到程小罗的虎啸山庄!o( ̄▽ ̄)ブ
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post$ hexo new "My New Post"
More info: Writing
Run server$ hexo server
More info: Server
Generate static files$ hexo generate
More info: Generating
Deploy to remote sites$ hexo deploy
More info: Deployment