You are not logged in.
[SOLVED]
When my computer startup/shutdown, it will have a message:
Booting "Arch Linux"
Loading Linux linux
Loading initial ramdisk ...
-my `/etc/default/grub` is:
# GRUB boot loader configuration
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="nowatchdog console=tty2 quiet loglevel=3 systemd.show_status=auto rd.udev.log_level=3"
GRUB_CMDLINE_LINUX=""
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"I added `systemd.show_status=auto rd.udev.log_level=3` but it seems to be not working
I ran `sudo mkinitcpio -P` and `sudo grub-mkconfig -o /boot/grub/grub.cfg`
Last edited by Firestar (2022-09-28 14:14:23)
Write programs that do one thing and do it well.
Write programs to work together.
Write programs to handle text streams, because that is a universal interface.
Offline
Offline
I know, you can see that I followed https://wiki.archlinux.org/title/Silent … parameters
So what is the type of this message
Write programs that do one thing and do it well.
Write programs to work together.
Write programs to handle text streams, because that is a universal interface.
Offline
"Loading Linux linux" and "Loading initial ramdisk ..." are echo'd by grub, just remove them from the grub.cfg or replace them w/ something else.
iirc the "booting something" message is hardcoded and you'd have to https://wiki.archlinux.org/title/Silent … _from_BIOS
PSA: what you're doing is an idiotic exercise.
The startup and shutdown sequence is typically extremely short and not relevant to the use of the system. So you don't really care what it looks like … unless the boot fails.
In that case: what do you think is a more desirable display? Some fancy logo or a boot message that gives you a hint why stuff doesn't work?
Online
I find them here
https://superuser.com/questions/1093157 … ng-message
it was in `/boot/grub/grub.cfg` and it is hardcoded in `/etc/grub.d/10_linux`, delete the 2 lines will fix
Last edited by Firestar (2022-09-28 14:12:24)
Write programs that do one thing and do it well.
Write programs to work together.
Write programs to handle text streams, because that is a universal interface.
Offline