Boot messages

Do the messages which are highlighted during the boot process get written anywhere?

I'm talking about messages such as start FB_INFO and the following block.

dmesg does not show such messages. Is there some way to get them recorded?
 
what block? have you tried looking at files in, say, /var/log? or are you just trying to provoke conversation to feed into your slop bot
 
  • Like
Reactions: mer
No, those messages are not written to dmesg.

The messages you see during the very early boot phase (loader, BTX, and early kernel initialization) are printed directly to the console before the kernel message buffer is initialized. Because of that, dmesg does not contain them.

The boot sequence roughly goes like this:
  1. MBR / boot0
  2. loader (BTX)
  3. kernel entry
  4. early kernel initialization
  5. console attach
  6. message buffer becomes active (used by dmesg)
Anything printed before the message buffer is set up will not be recorded.

If you need to capture the complete boot output, the reliable method is to use a serial console and log the output (or serial capture in a virtual machine).

Enabling verbose boot (boot_verbose="YES") may show more kernel messages, but it still does not cause loader-phase messages to appear in dmesg.
 
generally speaking when you're asking for help it's a good idea to explain what you already tried. also to explain which messages you're looking for — a photo of the screen would have clarified immediately, for example.
 
I remember to scroll back to the bootloader output but I can't get there anymore. It seems to be removed. Maybe the kms graphics can't remember it after changing resoluton.
was that on a BIOS machine? it's conceivable that a BIOS boot could leave the vga scrollback intact, but the UEFI handoff is going to tear down the boot services and lose the text.
 
was that on a BIOS machine? it's conceivable that a BIOS boot could leave the vga scrollback intact, but the UEFI handoff is going to tear down the boot services and lose the text.
Very good chance. The legacy kernel screen was still the 80x25 hardware console.
Kind of a loss. It's good to be able to look back until power-on.
 
Back
Top