17

As a Linux newbee, I would like to know What exactly is the significance of "Quiet Splash" in GRUB?

 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Archemar
  • 31,183
  • 18
  • 69
  • 104
Sojourner
  • 173
  • 1
  • 1
  • 4

1 Answers1

13

The splash (which eventually ends up in your /boot/grub/grub.cfg ) causes the splash screen to be shown.

At the same time you want the boot process to be quiet, as otherwise all kinds of messages would disrupt that splash screen.

Although specified in GRUB these are kernel parameters influencing the loading of the kernel or its modules, not something that changes GRUB behaviour. The significant part from GRUB_CMDLINE_LINUX_DEFAULT is CMDLINE_LINUX

Anthon
  • 78,313
  • 42
  • 165
  • 222