Boot – How to Permanently Remove ‘Quiet Splash’ Boot Option

bootgrub2

When booting, I'd like to see the kernel output without having to edit the GRUB line on each boot. How can I do that?

Best Answer

Open a terminal and type the following:

sudo  gedit /etc/default/grub

Then look for a line like this in the opened file:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

It may have other options there as well, but just remove quiet splash and:

sudo update-grub
Related Question