Skip to content

Instantly share code, notes, and snippets.

@viegelinsch
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viegelinsch/b84e145113dcefd13e78 to your computer and use it in GitHub Desktop.
Save viegelinsch/b84e145113dcefd13e78 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 server - reboot (grub) hangs
problem: your server hangs on reboot
symptom: grub shows menu and waits for an input
> /etc/default/grub
contains the lines
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
Well, these options are deprecated!
Try this
> vi /etc/default/grub
#GRUB_HIDDEN_TIMEOUT=0
#GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=2
and then
> update-grub
After next reboot your Ubuntu server should return to live automatically. ;-)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment