zoukankan      html  css  js  c++  java
  • [转]Centos 安装Sublime text 3

      本文简单介绍在CentOS上安装Sublime text 3, 转自:Centos 安装Sublime text 3

    Step 1 :建立软件安装目录

    # mkdir /opt
    # cd /opt

    Step 2 :下载安装包

      到官网下载安装包,或者使用如下命令:

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

    Step 3:解压

    tar jxvf sublime_text_3_build_3059_x64.tar.bz2

    Step 4:运行

    # cd /opt/sublime_text_3
    # ./sublime_text

    Step 5:创建桌面快捷方式

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

      配置文件:

    # vim /usr/share/applications/sublime_text.desktop
    我的配置如下
    [Desktop Entry]
    Version=1.0
    Type=Application
    Name=Sublime Text
    GenericName=Text Editor
    Comment=Sophisticated text editor for code, markup and prose
    Exec=/opt/sublime_text_3/sublime_text %F
    Terminal=false
    MimeType=text/plain;
    Icon=/opt/sublime_text_3/Icon/48x48/sublime-text.png
    Categories=TextEditor;Development;
    StartupNotify=true
    Actions=Window;Document;
    
    [Desktop Action Window]
    Name=New Window
    Exec=/opt/sublime_text_3/sublime_text -n
    OnlyShowIn=Unity;
    
    [Desktop Action Document]
    Name=New File
    Exec=/opt/sublime_text/sublime_text_3 --command new_file
    OnlyShowIn=Unity;

    Step 6:

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

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

  • 相关阅读:
    [FlareOn4]greek_to_me
    [FlareOn1]Sploitastic
    [FlareOn1]Creation
    [FlareOn1]5get_it
    esxi6.7中,显卡设置为直通步骤
    esxi6.7安装步骤
    nmcli命令详解
    查看指定进程的IO/CPU/MEM/带宽/显卡
    使用WSGIServer修改静态文件
    k8s配置多端口ingress
  • 原文地址:https://www.cnblogs.com/Hi-blog/p/How-To-Install-Sublime-On-CentOS.html
Copyright © 2011-2022 走看看