Skip to content

Instantly share code, notes, and snippets.

@colmarius
Last active September 8, 2015 04:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save colmarius/9164345 to your computer and use it in GitHub Desktop.
Save colmarius/9164345 to your computer and use it in GitHub Desktop.
Setup Dokku on Linode Ubuntu 13.04
# After building a new Linode Ubuntu 13.04 image...
ssh root@linode-123
# ...
uname -a
# Linux li348-235 3.12.9-x86_64-linode37 #1 SMP Mon Feb 3 10:01:02 EST 2014 x86_64 x86_64 x86_64 GNU/Linux
apt-get update
apt-get install -y linux-virtual grub-legacy-ec2
sed 's/defoptions=console=hvc0/defoptions=console=hvc0 rootflags=nobarrier/g' -i /boot/grub/menu.lst
update-grub-legacy-ec2
exit
# Wiki instructions: https://github.com/progrium/dokku/wiki/Installing-Dokku-on-Linode
# My private case:
sed 's/us.archive.ubuntu.com/ubuntu.fastbull.org/g' -i /etc/apt/sources.list
sed 's/security.ubuntu.com/ubuntu.fastbull.org/g' -i /etc/apt/sources.list
apt-get update
apt-get install lxc wget bsdtar linux-image-extra-$(uname -r)
uname -a
# Linux localhost 3.8.0-35-generic #50-Ubuntu SMP Tue Dec 3 01:24:59 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
modprobe aufs # okay!
wget -qO- https://raw.github.com/progrium/dokku/master/bootstrap.sh | sudo bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment