Basil Veerman A Personal Page
About Archive Feed

New system setup

Far too often it seems like I have to set up a new Ubuntu installation. To avoid floundering around, maybe it would be a good idea to document some of this?

Sublime Text 3

add-apt-repository ppa:webupd8team/sublime-text-3
apt-get update
apt-get install -y sublime-text-installer

source

nodejs (nvm)

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
nvm install stable

source

docker

apt-get update
apt-get install apt-transport-https ca-certificates
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
bash -c "echo 'deb https://apt.dockerproject.org/repo ubuntu-wily main' > /etc/apt/sources.list.d/docker.list"
apt-get update
apt-get install -y docker-engine
service docker start

Test it out:

docker run hello-world

source