How can I remove the command line messages during boot and shutdown on my Arch Linux?

0
109
Asked By CuriousCat42 On

I'm trying to get rid of the command line messages that pop up on my screen when I boot or shut down my Arch Linux PC. I want just a black screen without any text. I've disabled grub, so I'm not dealing with that, but I'm still seeing some command line messages. Any ideas on how to completely hide them?

3 Answers

Answered By LinuxLover78 On

Have you tried using `plymouth`? It's a service that many distributions use to hide boot messages. If you're not seeing it working, make sure it’s properly configured, especially since you disabled grub. It might help to clarify what you exactly mean by that to get more tailored advice.

Answered By ArchWiz123 On

Check out the Arch Wiki for ways to achieve a silent boot. They have specific instructions for configuring `plymouth` and handling the boot parameters. Here are the links to the relevant pages: [Silent boot](https://wiki.archlinux.org/title/Silent_boot) and [Plymouth](https://wiki.archlinux.org/title/Plymouth). They should be really helpful!

Answered By TechieGuru99 On

You can edit the `/etc/default/grub` file to change the boot messages. Uncomment the `GRUB_CMDLINE_LINUX_DEFAULT` line and add `quiet` or a specific log level like `loglevel=4`. After that, run `sudo update-grub` to apply the changes. Just a heads up, keeping some logs can be super helpful if your system runs into problems while starting or shutting down.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.