Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save murdho/9293532 to your computer and use it in GitHub Desktop.
Save murdho/9293532 to your computer and use it in GitHub Desktop.
# 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
# Linode Manager > Configuration Profile > Kernel "pv-grub-x86_64" and reboot
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
# Wiki instructions: https://github.com/progrium/dokku/wiki/Installing-Dokku-on-Linode
apt-get install lxc wget bsdtar linux-image-extra-$(uname -r)
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