1

I am running Gentoo currently. I don't want to see the boot messages it shows me. My /etc/default/grub has these lines: GRUB_CMDLINE_LINUX="quiet splash" and GRUB_CMDLINE_LINUX_DEFAULT="quiet splash", and updated grub with grub-mkconfig -o /boot/grub/grub.cfg

It still shows me boot messages. Do I have to do something else?

Thanks!

Akshat Vats
  • 439
  • 2
  • 8
  • 21

1 Answers1

1

From https://wiki.gentoo.org/wiki/GRUB2:

The grub-mkconfig script is used to generate a grub configuration. It uses the scripts under /etc/grub.d/* together with the /etc/default/grub configuration file to generate the final /boot/grub/grub.cfg - the only configuration file used by GRUB2 itself.

So you need to do that by running something like

grub-mkconfig -o /boot/grub/grub.cfg
eleventyone
  • 777
  • 3
  • 14