Is there a way to exit the splash screen during boot and view the verbose boot without rebooting?
For future viewers sake: this is for GRUB2 on Ubuntu.
Is there a way to exit the splash screen during boot and view the verbose boot without rebooting?
For future viewers sake: this is for GRUB2 on Ubuntu.
If you use grub2 then the following should do the trick for every installed kernel on every boot:
/etc/default/grub
/etc/default/grub
as rootGRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to GRUB_CMDLINE_LINUX_DEFAULT=""
(if there is more than only quiet
and splash
between the quotes, keep it!)sudo update-grub
This way this change will even be permanent after a kernel update. Also this is the only way that works in grub2 since boot/grub/menu.lst
was in grub1 and is not used anymore in grub2.
More about configuring grub2 in ubuntu: https://help.ubuntu.com/community/Grub2
On bootup, press F2.
Now, you'll have the verbose feedback mode.
This works only for grub versions prior than grub2!
Open /boot/grub/menu.lst
. You'll see a block like this:
title xxx
root (hd0,0)
kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=xxxx ro quiet splash
initrd /boot/initrd.img-2.6.22-14-generic
quiet
Change it to:
title xxx
root (hd0,0)
kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=xxxx ro
initrd /boot/initrd.img-2.6.22-14-generic
Note that the kernel version numbers in your case may be different. Save the file and the splash screen should be replaced with a verbose boot from now on.
menu.lst
has been replaced by grub.cfg
which is autogenerated by a pile of scripts.. :/
– stuartc
Dec 14 '11 at 20:20