Download
Http://pan.baidu.com/s/1eRkEegM
Extract
Switch to the download file directory in the terminal, execute the following command:
sudo tar-jxvf sublime_text_3_build_3083_x64.tar.bz2
sudo mkdir/opt/sublime_text_3
sudo mv./sublime_text_3/*/opt/sublime_text_3
To create an executable file
sudo touch/usr/bin/sublime
sudo vim/usr/bin/sublime
sudo chmod 755/usr/bin/sublime
Copy the following code into the sublime file:
#!/bin/sh
Export Sublime_home= "/opt/sublime_text_3"
$SUBLIME _home/sublime_text $*
Create desktop startup mode and Settings icon
sudo touch/usr/share/applications/sublime.desktop
sudo vim/usr/share/applications/sublime.desktop
Copy the following code in:
[Desktop Entry]
Encoding=utf-8
Name=sublime
Comment=sublime Text Editor
Exec=sublime
Icon=/opt/sublime_text/icon/256x256/sublime-text.png
Terminal=false
Type=application
Categories=gnome; Application;development;
Startupnotify=true
The installation is complete here, you can use the sublime command or start the sublime Text 3 in the Program menu.
Fedora Installation Sublime Text tutorial