ubuntu下配置eclipse3.3

1,http://www.eclipse.org/downloads/,下载eclipse 3.3.1 for linux版本,我下载后文件的完整名称为:eclipse-SDK-3.3.1.1-linux-gtk

2,执行命令:sudo nautilus进入root权限,将压缩包解压到/opt/eclipse下,设置目录eclipse执行权:chown -R root:root eclipse

3,创建eclipse的一个可执行文件:sudo gedit /usr/bin/eclipse

在文件中加入:

# !/ bin / sh
export MOZILLA_FIVE_HOME
= " /usr/lib/mozilla/ "
export ECLIPSE_HOME
= " /opt/eclipse "
$ECLIPSE_HOME
/ eclipse $ *

4,创建桌面连接

sudo gedit /usr/share/applications/eclipse.desktop

加入下面内容:

[Desktop Entry]
Encoding
= UTF - 8
Name
= Eclipse
Comment
= Eclipse SDK
Exec
=/ opt / eclipse / eclipse
Icon
=/ opt / eclipse / icon.xpm
Terminal
= false
Type
= Application
Categories
= Application;Development;

这时就会在最左上角的应用程序菜单加多一个"编程"-->"eclipse"的菜单,点击即可起动eclipse.

5,如果总是报错,就进入/home/你的用户名/.eclipse/org.eclipse.platform_ 3.3.0 _1473617060/configuration中,把那几个文件夹都删除掉,还要删除.cofig文件

6,在桌面上设置一个启动器,命令设置为“/opt/eclipse/eclipse”,图标设置为

“/opt/eclipse/icon.xpm”,打开eclipse验证

你可能感兴趣的:(eclipse)