I like a noisy boot, Not quiet boot. Or show system boot

I tried to phrase the title so it might be found by other searches. Anyway I edited out quiet in:

/etc/default/grub
# GRUB boot loader configuration

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="EndeavourOS"
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 nowatchdog"
GRUB_CMDLINE_LINUX=""

What am I forgetting?
Thanks

sudo grub-mkconfig -o /boot/grub/grub.cfg

???

5 Likes

Thanks xircon I had a frain bart…Abit embarrassed.

You must re build the grub.cfg. then
reboot.
I just rebooted…

5 Likes

Remember xirconian is rock solid :slight_smile: :diamond_shape_with_a_dot_inside:

I agree!

I have the same in my install script for my system, for those curious, or those coming here from google:

sudo cp /etc/default/grub /etc/default/grub.bak # Make backup of grub.
sudo sed -i '/GRUB_CMDLINE_LINUX_DEFAULT=/c\GRUB_CMDLINE_LINUX_DEFAULT=""' /etc/default/grub # Remove the quiet boot.
sudo update-grub # Update the grub.

For the command ‘update-grub’ to work I have installed the package ‘update-grub’. It is basically a wrapper for the commands earlier in the thread.