Disabling Ubuntu 9.10 (Karmic Koala) Boot Splash Screen
Sometimes, a verbose boot process is needed for debugging purposes. In order to see that, the splash screen need to be disabled. Following steps are for Grub2 which is used from Karmic Koala onwards.
References
- Open /etc/default/grub and edit:
sudo vi /etc/default/grub
- Locate line that says:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
- Remove "quiet" and "splash".
- The new line will look like:
GRUB_CMDLINE_LINUX_DEFAULT=""
- Save and exit.
- Update the grub:
sudo update-grub
References
Comments
Post a Comment