You are not logged in.

#1 2023-09-25 06:08:07

thant
Member
Registered: 2023-09-25
Posts: 8

How to disable verbose log messages at boot

My current grub kernel parameter is:

GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet cryptdevice=UUID=**************:cryptlvm root=UUID==**************" 

For verbose message, I mean something like this: http://freedesktop.org/wiki/Software/sy … 17boot.png (not my image, just an example).
Is the above order incorrect? Should I add something? Do I need splash parameter after quiet?

Offline

#2 2023-09-25 06:40:03

seth
Member
Registered: 2012-09-03
Posts: 51,655

Re: How to disable verbose log messages at boot

That's not "verbose", that's normal and regardless of how clever it is to hide that for whatever stupid reason so you cannot see where things go wrong if they ever do: https://wiki.archlinux.org/title/Silent_boot

Offline

#3 2023-09-25 06:45:20

thant
Member
Registered: 2023-09-25
Posts: 8

Re: How to disable verbose log messages at boot

seth wrote:

That's not "verbose", that's normal and regardless of how clever it is to hide that for whatever stupid reason so you cannot see where things go wrong if they ever do: https://wiki.archlinux.org/title/Silent_boot

And how do I disable it? I have already read this wiki post but quiet parameter does not seem to change anything as I have it above at least.

Offline

#4 2023-09-25 07:13:01

seth
Member
Registered: 2012-09-03
Posts: 51,655

Re: How to disable verbose log messages at boot

That depends on what you're *actually* seeing there - and whether its the same messages in the generic picture you linked.
Also post

cat /proc/cmdline

- the UUIDs there are btw. for collision prevention and not of privacy concern.

Edit:

the wiki btw wrote:

Note that this only seems to work if both quiet and loglevel=level are both used, and they must be in that order (quiet first).

Last edited by seth (2023-09-25 07:14:23)

Offline

#5 2023-09-25 07:18:54

thant
Member
Registered: 2023-09-25
Posts: 8

Re: How to disable verbose log messages at boot

seth wrote:

That depends on what you're *actually* seeing there - and whether its the same messages in the generic picture you linked.
Also post

cat /proc/cmdline

- the UUIDs there are btw. for collision prevention and not of privacy concern.

Edit:

the wiki btw wrote:

Note that this only seems to work if both quiet and loglevel=level are both used, and they must be in that order (quiet first).

BOOT_IMAGE=/vmlinuz-linux root=UUID=cda70d36-b4c3-4b83-adc5-84af1ec0d4e6 rw loglevel=3 quiet cryptdevice=UUID=05111410-cf75-49b2-b1bc-c4419f747b24:cryptlvm root=UUID=cda70d36-b4c3-4b83-adc5-84af1ec0d4e6

The above is the output of the command you sent.
The messages are not exactly that but they are in this type with green ok and they appear exactly after I enter password of encrypted volume.

Offline

#6 2023-09-25 07:27:40

seth
Member
Registered: 2012-09-03
Posts: 51,655

Re: How to disable verbose log messages at boot

Did you read the wiki quote?

Offline

#7 2023-09-25 07:36:25

thant
Member
Registered: 2023-09-25
Posts: 8

Re: How to disable verbose log messages at boot

seth wrote:

Did you read the wiki quote?

Yes, I changed the above to:

GRUB_CMDLINE_LINUX_DEFAULT="quiet loglevel=3 cryptdevice=UUID=05111410-cf75-49b2-b1bc-c4419f747b24:cryptlvm root=UUID=cda70d36-b4c3-4b83-adc5-84af1ec0d4e6" 

but the same is happening. I have again those messages.
I of course updated grub with this command

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

Last edited by thant (2023-09-25 07:37:08)

Offline

#8 2023-09-25 07:54:58

seth
Member
Registered: 2012-09-03
Posts: 51,655

Re: How to disable verbose log messages at boot

Post an actual shot of the actual messages.

Offline

#9 2023-09-25 09:21:05

thant
Member
Registered: 2023-09-25
Posts: 8

Re: How to disable verbose log messages at boot

seth wrote:

Post an actual shot of the actual messages.

Screenshot-20230925-121616.png
PXL-20230925-121345409-exported-6731.jpg
Sorry for the bad quality but it's difficult to capture.

Offline

#10 2023-09-25 14:28:47

seth
Member
Registered: 2012-09-03
Posts: 51,655

Re: How to disable verbose log messages at boot

Please post your complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Short of a feature bug in systemd I don't see how you'd end up w/ that output for those parameters…

Offline

#11 2023-09-25 14:36:01

thant
Member
Registered: 2023-09-25
Posts: 8

Re: How to disable verbose log messages at boot

seth wrote:

Please post your complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Short of a feature bug in systemd I don't see how you'd end up w/ that output for those parameters…

...

This is happening from first install. I remember this to happen when installing kde plasma as display manager from the iso.

Last edited by thant (2023-09-25 15:33:15)

Offline

#12 2023-09-25 15:11:10

seth
Member
Registered: 2012-09-03
Posts: 51,655

Re: How to disable verbose log messages at boot

systemd.show_status=false

There also seems to be an attempt to use plymouth, but there's no "splash" in the kernel parameters - and did you add the plymouth hook to the initramfs?

Maybe try to de-install plymouth for the moment to make sure this isn't just a consequence of its failure.

Offline

#13 2023-09-25 15:21:45

thant
Member
Registered: 2023-09-25
Posts: 8

Re: How to disable verbose log messages at boot

seth wrote:
systemd.show_status=false

There also seems to be an attempt to use plymouth, but there's no "splash" in the kernel parameters - and did you add the plymouth hook to the initramfs?

Maybe try to de-install plymouth for the moment to make sure this isn't just a consequence of its failure.

So for now just uninstall plymouth without changing anything? I do not see it in hook. Though I cannot remove it as there are modules that depend on it (breeze-plymouth, plymouth-kcm).

Last edited by thant (2023-09-25 15:23:53)

Offline

#14 2023-09-25 15:28:12

seth
Member
Registered: 2012-09-03
Posts: 51,655

Re: How to disable verbose log messages at boot

Just remove those as well.
If that doesn't help, force the systemd.show_status value in the kernel commandline.
If it however is because of plymouth, you might simply need the splash parameter (idk. I've never used plymouth)

Offline

#15 2023-09-25 15:32:48

thant
Member
Registered: 2023-09-25
Posts: 8

Re: How to disable verbose log messages at boot

Messages disappeared completely after uninstalling. Thanks!

Offline

Board footer

Powered by FluxBB