LKBEN11393: Ubuntu Linux, how to enable boot messages during startup


Symptom

When booting your linux system, you do have a blank screen till the gui starts

Cause

This is a configuration which can be changed. The default ist quiet and splash.

Solution

To change this configuration you need to edit the grub configuration. On Ubuntu this can be done via /etc/default/grub. You can use any editor you like.

sudo vim /etc/default/grub

Now you locate the line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" and delete the parameters. You should now have the following line in your configuration:

GRUB_CMDLINE_LINUX_DEFAULT=""

I also like to change the GRUB_TIMEOUT_STYLE to countdown and to set the GRUB_TIMEOUT to 10.

GRUB_TIMEOUT_STYLE=countdown

GRUB_TIMEOUT=10

 

After your changes you need to execute the update-grub command to update your configuration.

sudo update-grub

 

This article has been checked and works on Ubuntu 20.04.1 LTS and also on 21.10. Please note that after these changes you might see the following error:

can't find HWMATCH

This error can be ignored. (it was there in quiet mode too) If you want to complete disable this error, you need to update your configuration in /etc/grub.d/10_linux by commenting a few lines out.

Have fun.

Disclaimer:

The information provided in this document is intended for your information only. Lubby makes no claims to the validity of this information. Use of this information is at own risk!

About the Author

Author: Wim Peeters - Keskon GmbH & Co. KG

Wim Peeters is electronics engineer with an additional master in IT and over 30 years of experience, including time spent in support, development, consulting, training and database administration. Wim has worked with SQL Server since version 6.5. He has developed in C/C++, Java and C# on Windows and Linux. He writes knowledge base articles to solve IT problems and publishes them on the Lubby Knowledge Platform.

Latest update: 05-04-2022 | Comment: