天天看点

Centos修炼----->Centos7之安装eclipse

Centos安装eclipse

安装好JDK之后安装eclipse

1–下载eclipse-mars版压缩包并解压

tar -zxvf eclipse-java-mars--linux-gtk-x86_64.tar.gz -C /opt
           
  • 2–使用符号连接目录,符号链接的用法 ln -s 源文件 目标文件 ,-s 是符号的意思(symbolic)软连接
ln -s /opt/eclipse/eclipse /usr/bin/eclipse 
           

2–创建一个桌面启动器

vim /usr/share/applications/eclipse.desktop

然后添加如下代码

[Desktop Entry]

Encoding=UTF-8

Name=EclipseMars

Comment=Eclipse mars

Exec=/usr/bin/eclipse

Icon=/opt/eclipse/icon.xpm

Categories=Application;Development;Java;IDE

Version=1.0

Type=Application

Terminal=0