1.下载JDK
xxxx_linux-x64_bin.tar.gz
2.解压至根目录的opt目录下
tar -xzvf xxxx_linux-x64_bin.tar.gz -C /opt
3.配置 /etc/profile (比较与 ~/.bashrc 的不同)
sudo gedit /etc/profile
文件底部添加如下配置:
export JAVA_HOME=/opt/jdk-10.0.1
export CLASSPATH=.:$JAVA_HOME/lib:$JAVA_HOME/jre/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$JAVA_HOME/jre/bin:$PATH
使文件生效:
source /etc/profile
4.IDEA配置
解压后执行 /bin/idea.sh
License Server: http://xdouble.cn:8888/
5.IDEA快捷启动方式
桌面创建文件:touch idea.desktop
编辑内容:
[Desktop Entry]
Name=IdeaIU
Comment=Rayn-IDEA-IU
Exec=/home/xxx/idea-IU-181.4668.68/bin/idea.sh
Icon=/home/xxx/idea-IU-181.4668.68/bin/idea.png
Terminal=false
Type=Application
Categories=Developer;
可执行权限:
sudo chmod 777 idea.desktop