mac下的terminal插件,提供git提示:
https://github.com/robbyrussell/oh-my-zsh
Ubuntu上安装Jenkins
参考链接: http://pkg.jenkins-ci.org/debian/
This is the Debian package repository of Jenkins to automate installation and upgrade. To use this repository, first add the key to your system:
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
Then add the following entry in your /etc/apt/sources.list:
deb http://pkg.jenkins-ci.org/debian binary/
Update your local package index, then finally install Jenkins:
sudo apt-get update
sudo apt-get install jenkins
Ubuntu上安装Gitlab CE
参考文档:https://about.gitlab.com/downloads/#ubuntu1404
下载安装包:https://packages.gitlab.com/gitlab/gitlab-ce (gitlab-ce_8.2.4-ce.2_amd64.deb ubuntu/trusty)
安装安装包:dpkg -i gitlab-ce-XXX.deb
配置并启动Gitlab: sudo gitlab-ctl reconfigure
Ubuntu上安装Tengine (淘宝定制的Nginx)
Tengine参考文档:http://tengine.taobao.org/documentation_cn.html
下载:http://tengine.taobao.org/download_cn.html
《Nginx开发从入门到精通》:http://tengine.taobao.org/book/index.html
编译安装Tengine:
Step 1: 下载Tengine源码包(参考下载链接)
Step 2:编译Tengine准备工作:
sudo apt-get install build-essential
sudo apt-get install libpcre3 libpcre3-dev
sudo apt-get install openssl libssl-dev
Step 3: 编译并安装
tar zxf tengine-2.1.2.tar.gz
cd tengine-2.1.2
./configure
make -j4
make install
Tengine默认将安装在/usr/local/nginx
待续。。。