首先做个说明:Linux上的软件其实都是一个可以执行文件,都是有+X的权限的文件,而且有别与Window上的文件是,它们基本都是绿色版的,我们直接解压后就可以用。
下面所说的环境都是在Ubuntu下
一、绿色版软件的一些常用的命令
sudo tar -zxvf eclipse-cpp-mar-1-linux-gtk-x86_64.tar.gz -C /usr/share/eclipse/cpp
上面是一Eclipse的C/C++开发工具为类,个人喜欢把它们解压到 /usr/share/eclipse的目录下面
二、做一个命令软连接
ln -s /usr/share/eclipse/cpp/eclipse /usr/bin/elcipse-cpp
三、做一个快捷方式
在/usr/share/applications/ 目录下面建立一个 eclipse-cpp.desktop 文件,文件内容如下
[Desktop Entry]
Categories=Development;
Comment[zh_CN]=
Comment=
Exec=/usr/bin/eclipse-cpp
GenericName[zh_CN]=IDE
GenericName=IDE
Icon=/usr/share/eclipse/cpp/icon.xpm
MimeType=
Name[zh_CN]=eclipse-cpp
Name=eclipse-cpp
Path=
StartupNotify=true
Terminal=false
Type=Application
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=zhuqinfeng
上面的destop文件我就不多说明