Skip to content

Instantly share code, notes, and snippets.

@ciarand
Created July 25, 2014 23:22
Show Gist options
  • Save ciarand/058e5ffdee48a0ce3570 to your computer and use it in GitHub Desktop.
Save ciarand/058e5ffdee48a0ce3570 to your computer and use it in GitHub Desktop.
Bootstrap a Debian 7.5 Linode server w/ CoreOS
# sources:
# - http://stackoverflow.com/questions/24585419/
# - https://coreos.com/docs/running-coreos/bare-metal/installing-to-disk/
# - https://www.linode.com/docs/platform/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub
set -e -o pipefail
apt-get update -y
apt-get upgrade -y --show-upgraded
mkdir /boot/grub
apt-get install -y linux-image-amd64 grub-legacy
grub-set-default 1
update-grub
echo "time to update the /boot/grub/menu.lst file"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment