LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to enable grub boot report ? (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-enable-grub-boot-report-4175690344/)

jan128 02-11-2021 03:57 PM

How to enable grub boot report ?
 
After I ask Mrs Google she said to

..disable " "quiet splash" in grub file
Did not work.

Then I guessed this
GRUB_CMDLINE_LINUX_DEFAULT= "text"
Did not work either

Commenting out this way
GRUB_CMDLINE_LINUX_DEFAULT=
# "quiet splash"

tic-tack-toe as first character on separate line did not work either

Quote:

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT= # did not work
GRUB_CMDLINE_LINUX_DEFAULT= # "quiet splash" did not work duh

GRUB_CMDLINE_LINUX=""

Yes , I do
sudo update-grub after I change /etc/default/grub


What am I missing ?


BTW
I get very short splash of text in upper left corner of the screen identifying /dev/xxx my OS is running on. Nice "feature".

PS
Linux Ubuntu 20

rtmistler 02-11-2021 04:19 PM

What exact information do you want from the grub boot process and what gave you the impression that there was information available?

I will grant there is, but there's no particular item called a "grub boot report"

So this is why I ask what information are you wishing to have grub output during the boot?

Also, would you prefer a boot log to be saved? (I believe there is one, and probably one can configure how much detail they wish it to contain)

I think there is a "noquiet" option you can incorporate into your grub cmdline, but noy recommending you just try things and instead it would be helpful to know what you wish to learn and see from this output.

jan128 02-12-2021 07:59 AM

SOLVED
The option to comment out "grub" file line

# GRUB_CMDLINE_LINUX_DEFAULT= "quiet splash"

works just fine , my mistake

mrmazda 02-12-2021 09:37 PM

Quote:

Originally Posted by jan128 (Post 6219448)
# GRUB_CMDLINE_LINUX_DEFAULT= "quiet splash"

works just fine , my mistake

The better procedure would have been to adjust that line as follows:
Code:

GRUB_CMDLINE_LINUX_DEFAULT=""
Based upon your desire for a "report", I suspect even better would have been:
Code:

GRUB_CMDLINE_LINUX_DEFAULT=" noplymouth "
or possibly:
Code:

GRUB_CMDLINE_LINUX_DEFAULT=" plymouth.enable=0 "
or:
Code:

GRUB_CMDLINE_LINUX_DEFAULT=" plymouth=0 "


All times are GMT -5. The time now is 09:11 PM.