Last active
September 8, 2015 04:26
-
-
Save colmarius/9164345 to your computer and use it in GitHub Desktop.
Setup Dokku on Linode Ubuntu 13.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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