Last active
August 29, 2015 14:05
-
-
Save viegelinsch/b84e145113dcefd13e78 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 server - reboot (grub) hangs
This file contains 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
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