Centos 安装Sublime text 3

来源:互联网 发布:读spring源码 编辑:程序博客网 时间:2024/05/16 15:25

Centos 安装Sublime text 3

Centos大多数情况下是用来做服务器的,但是由于各种原因我现在要用Centos做开发机,所以当然要安装开发神奇Sublime textle.

注意:安装目录因人而异,我的安装目录是/opt/sublime_text_3.

一、建立软件安装目录(我一般把软件安装在opt目录下)

# mkdir /opt# cd /opt

二、下载软件

http://www.sublimetext.com/3
注意一定要下Ubuntu/tarball包。
也可以用命令下载

wget http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x64.tar.bz2

如果链接地址失效,请到官网获取最新下载地址。

三、解压软件包

tar jxvf sublime_text_3_build_3059_x64.tar.bz2

四、命令行下直接运行

# cd /opt/sublime_text_3# ./sublime_text

五、创建桌面快捷方式

复制文件

# cp /opt/sublime_text_3/sublime_text.desktop /usr/share/applications

更改配置文件

 # vim /usr/share/applications/sublime_text.desktop我的配置如下[Desktop Entry]Version=1.0Type=ApplicationName=Sublime TextGenericName=Text EditorComment=Sophisticated text editor for code, markup and proseExec=/opt/sublime_text_3/sublime_text %FTerminal=falseMimeType=text/plain;Icon=/opt/sublime_text_3/Icon/48x48/sublime-text.pngCategories=TextEditor;Development;StartupNotify=trueActions=Window;Document;[Desktop Action Window]Name=New WindowExec=/opt/sublime_text_3/sublime_text -nOnlyShowIn=Unity;[Desktop Action Document]Name=New FileExec=/opt/sublime_text/sublime_text_3 --command new_fileOnlyShowIn=Unity;

六、打开软件

应用程序 >编程 > Sublime Text”右键”将此启动器添加到桌面”

注意:配置文件标注红色的地方对应的是软件安装目录,需要改成你自己的安装目录。

本文地址:http://www.sundabao.com/centos-%E5%AE%89%E8%A3%85sublime-text-3/

原创粉丝点击