码迷,mamicode.com
首页 > 其他好文 > 详细

ubuntu 14.04 配置

时间:2014-07-31 02:59:15      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   art   cti   ar   

1. apt-get 源更新

$ sudo apt-get update
$ sudo apt-get upgrade

2. git & Github

$ sudo apt-get install git-all xclip
$ git config --global user.name "Jackon Yang" 
$ git config --global user.email "jiekunyang@gmail.com"

添加 ssh 密钥,详细说明: https://help.github.com/articles/generating-ssh-keys

$ mkdir -p ~/.ssh && cd ~/.ssh
$ ssh-keygen -t rsa -C "jiekunyang@gmail.com"
$ xclip -sel clip < ~/.ssh/id_rsa.pub  # id_rsa.pub 中的密钥保存到剪切板中
$ ssh -T git@github.com  # test connection

# output
# Hi JackonYang! Youve successfully authenticated, but GitHub does not provide shell access.

3. vim

sudo apt-get install vim-gtk exuberant-ctags  # vim and ctags
$ git clone git@github.com:JackonYang/vimrc.git .vim
$ cd .vim
$ install.sh

4. chrome

sudo apt-get install chromium-browser

 

ubuntu 14.04 配置,布布扣,bubuko.com

ubuntu 14.04 配置

标签:style   blog   http   color   io   art   cti   ar   

原文地址:http://www.cnblogs.com/misspy/p/3879729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!