博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kali linux 2.0安装sublime text 2
阅读量:6575 次
发布时间:2019-06-24

本文共 1679 字,大约阅读时间需要 5 分钟。

参考原文:

http://www.codeproject.com/Articles/582849/InstallingplusSublimeplusTextplus-plusonplusLinuxp

sublime不能从软件源里直接安装,但可以通过第三方源来安装,下面介绍两种方法:

第一种方法

Download the Sublime Text 2 & Extract it:

32位:

$ wget http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.1.tar.bz2

tar vxjf "Sublime Text 2.0.1.tar.bz2"   

64位:

$ wget http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.1%20x64.tar.bz2

tar vxjf "Sublime Text 2.0.1x64.tar.bz2"

Add a Sym link:

$ sudo ln -s "~apps/Sublime Text 2/sublime_text" /usr/bin/sub1

这种方法虽然可以用,但以后的更新版本不方便升级,所以推荐另一种方法。

 

第二种方法:

这种方法需要添加ppa源,如果不能添加请参考附录里的方案

Add the Sublime Text 2 Repository to your Synaptic Package Manager:

$ sudo add-apt-repository ppa:webupd8team/sublime-text-2

Update:

$ sudo apt-get update

Install Sublime Text 2:

$ sudo apt-get install sublime-text

If you are installing the Sublime Text 3 Beta as discussed in the update above, use this command instead of apt-get install sublime-text:

$sudo apt-get install sublime-text-installer

Create alias files (if not present):

$ sudo cp /usr/bin/sublime-text /usr/bin/sublime-text

$ sudo cp /usr/bin/sublime-text /usr/bin/sub1

现在就可以使用sublime text了。

 

附录:在debian下添加ppa

参考原文

https://blog.anantshri.info/howto-add-ppa-in-debian

1.Download file

$ wget http://blog.anantshri.info/content/uploads/2010/09/add-apt-repository.sh.txt

2.Save this file in /

$ cp add-apt-repository.sh.txt /usr/sbin/add-apt-repository

 

3.  Change permissions to execute

$ o+x /usr/sbin/add-apt-repository

4.  Change ownership to root

$chown root:root /usr/sbin/add-apt-repository

5.  Now when ever you need to execute command type

$ sudo add-apt-repository ppa:ppa-name

 

转载于:https://www.cnblogs.com/scplee/p/4975585.html

你可能感兴趣的文章
Docker 部署 SpringBoot 项目整合 Redis 镜像做访问计数Demo
查看>>
ReactNative字体大小不随系统字体大小变化而变化
查看>>
中台之上(五):业务架构和中台的难点,都是需要反复锤炼出标准模型
查看>>
为什么中台是传统企业数字化转型的关键?
查看>>
使用模板将Web服务的结果转换为标记语言
查看>>
inno setup 打包脚本学习
查看>>
php 并发控制中的独占锁
查看>>
从pandas到geopandas
查看>>
用express搭建网站
查看>>
如何在 Swift 中进行错误处理
查看>>
[Leetcode] Factor Combinations 因数组合
查看>>
用tinypng插件创建gulp task压缩图片
查看>>
BetaMeow----利用机器学习做五子棋AI
查看>>
APM终端用户体验监控分析(下)
查看>>
React Native 0.20官方入门教程
查看>>
JSON for Modern C++ 3.6.0 发布
查看>>
Tomcat9.0部署iot.war(环境mysql8.0,centos7.2)
查看>>
我的友情链接
查看>>
Oracle 服务作用
查看>>
监听在微信中打开页面时的自带返回按钮事件
查看>>