4

I would like to totally disable text messages on boot. I would like to see only the plymouth animation.

I have this on my /etc/default/grub:

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet loglevel=0 systemd.log_level=0 rd.systemd.show_status=false rd.udev.log_level=0 splash net.ifnames=0 biosdevname=0 vt.global_cursor_default=0"
GRUB_CMDLINE_LINUX=""
GRUB_RECORDFAIL_TIMEOUT=$GRUB_TIMEOUT

But sometimes at the end of plymouth theme appear boot messages show in photo.

How it's possible disable and not only hide text boot message?

The system version is Lubuntu 22.04LTS

Thanks Mauro

1 Answers1

0

Try edit your /etc/default/grub file like this:

GRUB_CMDLINE_LINUX_DEFAULT=quiet   #Don't show Ubuntu bootup text
GRUB_CMDLINE_LINUX="console=tty12" #Don't show kernel text

After editing the file, you need to run update-grub.

sudo update-grub

(source)

This might work, in my case no message is shown, but I have Ubuntu 22.04 with full disk encryption.

Sim.dll

sim.dll
  • 51