Skip to content

Instantly share code, notes, and snippets.

@witooh
witooh / redis.sh
Last active August 29, 2015 14:02
[Redis] Ubuntu Install
sudo add-apt-repository ppa:rwky/redis
sudo apt-get update
sudo apt-get install redis-server
@witooh
witooh / go.sh
Last active August 4, 2017 02:30
[Go] Ubuntu install
wget http://golang.org/dl/go1.3.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.3.linux-amd64.tar.gz
sudo echo "PATH=$PATH:/vagrant/go/bin:/usr/local/go/bin" >> ~/.profile
sudo echo "export GOPATH=/vagrant/go" >> ~/.profile
sudo echo "export GOROOT=/usr/local/go" >> ~/.profile
source ~/.profile
@witooh
witooh / git.sh
Created June 10, 2014 16:21
[Git] Ubuntu install
sudo apt-get install git mercurial bzr
@witooh
witooh / ec2_to_root.sh
Created June 17, 2014 11:45
[EC2] Access root user
sudo cp /home/ubuntu/.ssh/authorized_keys /root/.ssh/
@witooh
witooh / nginx.sh
Created June 26, 2014 06:34
Ubuntu Install Nginx
sudo apt-get install python-software-properties
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:nginx/stable
sudo apt-get update
sudo apt-get install nginx
@witooh
witooh / nodejs.sh
Created June 26, 2014 06:43
Ubuntu Install Nodejs
sudo apt-get install python-software-properties
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install python g++ make nodejs
@witooh
witooh / time.sh
Created June 26, 2014 08:10
Ubuntu Sync time
sudo ntpdate pool.ntp.org
date
@witooh
witooh / wercker.sh
Created June 26, 2014 16:59
Wercker CLI
sudo apt-get install python-setuptools
pip install wercker
@witooh
witooh / mongo.sh
Created July 3, 2014 11:20
Ubuntu Install MongoDB
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
sudo apt-get update
sudo apt-get install mongodb-org
@witooh
witooh / elastic.sh
Last active August 29, 2015 14:03
Ubuntu install ElasticSearch
#required java 7 or later
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.1.deb
sudo dpkg -i elasticsearch-1.2.1.deb