红联Linux门户
Linux帮助

解决eclipse菜单在Ubuntu无法显示

发布时间:2016-03-05 10:13:30来源:linux网站作者:bellovin

一、新建一个桌面快捷方式

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


二、在打开的文件里面写入以下代码

[Desktop Entry] 
Encoding=UTF-8 
Name=eclipse 
Comment=Eclipse IDE 
Exec=env UBUNTU_MENUPROXY= /home/bell/adt-bundle-linux-x86-20131030/eclipse/eclipse 
Icon=/home/bell/adt-bundle-linux-x86-20131030/eclipse/icon.xpm 
Terminal=false 
StartupNotify=true 
Type=Application 
Categories=Application;Development;

其中,Exec=env UBUNTU_MENUPROXY 是重点,后面跟eclipse路径


三、修改eclipse.desktop的权限

sudo chmod u+x elipse.desktop


注:图片格式转换

sudo apt-get install imagemagick

convert ico.xpm -resize 48x48 ico.png


本文永久更新地址:http://www.linuxdiyf.com/linux/18630.html