Boot status hide (ok) status 22 January 2023, 12:51:57 Hello, everyone,I would like to introduce myself my name is Susanne and I have been working with arch-based Linux distributions on various laptops for 2 years.At the moment I'm very enthusiastic about Artix Linux (since systemd is free). Today I installed Artix Plasma runit as a staple on a freshly formatted hard drive. Everything works.Now I would like to know if it is possible to hide the (ok) boot status?With Endeavouros, for example, this is hidden in the Grub menuGRUB_CMDLINE_LINUX_DEFAULT=loglevel=3 nowatchdog nvme_load=YES quietTried this with grub customizer but it doesn't work.thanks for tipsGreetings Susanne Last Edit: 22 January 2023, 13:25:20 by Sunshine1972
Re: Boot status hide (ok) status Reply #1 – 22 January 2023, 13:26:17 I used to change the default console to tty2 on GRUB_CMDLINE_LINUX_DEFAULTCode: [Select]console=tty2This gets rid of everything, good if you want a clear boot with no messages.
Re: Boot status hide (ok) status Reply #2 – 22 January 2023, 14:21:09 Thanks for the quick answer. But how can I exactly do that (manual)?
Re: Boot status hide (ok) status Reply #3 – 22 January 2023, 14:47:21 Quote from: Sunshine1972 – on 22 January 2023, 14:21:09Thanks for the quick answer. But how can I exactly do that (manual)?https://forum.artixlinux.org/index.php/topic,1171.msg8414.html#msg8414Open `/etc/default/grub` with a text editor and add "console=tty2" to GRUB_CMDLINE_LINUX_DEFAULTFor example:Code: [Select]GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 nowatchdog nvme_load=YES quiet"would becomeCode: [Select]GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 nowatchdog nvme_load=YES console=tty2 quiet"After that just run the following to regenerate the grub.cfg through mkconfigCode: [Select]# update-grub Last Edit: 22 January 2023, 15:00:24 by look 1 Likes
Re: Boot status hide (ok) status Reply #4 – 22 January 2023, 15:06:14 ok it works, it's better but not perfect :-) Last Edit: 22 January 2023, 15:31:33 by Sunshine1972
Re: Boot status hide (ok) status Reply #5 – 22 January 2023, 19:01:22 Quote from: Sunshine1972 – on 22 January 2023, 15:06:14ok it works, it's better but not perfect :-)I would also comment out the lines 149 and 160 in /etc/grub.d/10_linux.
Re: Boot status hide (ok) status Reply #6 – 22 January 2023, 23:30:40 I don't use it myself as I like having the messages in case there is a problem they reveal, so don't know much about setting it up, but there is a package called plymouth which can do this kind of thing:https://wiki.archlinux.org/title/plymouthplymouth-nosystemd is available in the additional Artix "omniverse" repo:https://wiki.artixlinux.org/Main/RepositoriesPossibly there are alternatives to plymouth, but it seems to be the one most people talk about for this sort of thing.