Pause boot process / splash screen

Hi, is there some way how to pause splash screen during boot?

I’ve tried to make some internet research, but nothing works - like pause/break button, scroll lock button… Maybe it must be enabled some how, but I don’t know how…

TL;DR

No, there is no way to do that.

The long version:

Back in the single-core, single-user, single-tasking era of CP/M and MS-DOS, it was easy to stop the boot process by putting a PAUSE in the startup script, but in the current era of multi-core, multi-user, multi-tasking this is not possible any more.

The boot process fires off a number of parallel tasks on multiple cores to ensure the boot process is finished as soon as possible, so pausing the boot process would be terribly complicated, so therefore this functionality doesn’t exist.

So what should you do then, you ask?

Well, that’s easy: once you’ve fully booted, you can just look at the boot processes output by using the journalctl CLI:

journalctl --boot=0 --system --priority=2

Where:

  • --boot=0
    Will look at the current boot only:
    • -1 looks at the previous boot,
    • -2 looks at 2 boots ago, …
  • --system
    Show messages from system services and the kernel only
  • --priority=2
    Filter output by message priorities or priority ranges:
    • “emerg” (0),
    • “alert” (1),
    • “crit” (2),
    • “err” (3),
    • “warning” (4),
    • “notice” (5),
    • “info” (6),
    • “debug” (7)

for more information: man journalctl

:+1:

2 Likes

Hi, thank you for explaining answer! Thats what I need :slight_smile:

1 Like

I’ve marked this answer as the solution to your question as it is by far the best answer you’ll get.

However, if you disagree with my choice, please feel free to take any other answer as the solution to your question or even remove the solution altogether: You are in control! (If you disagree with my choice, just send me a personal message and explain why I shouldn’t have done this or :heart: or :+1: if you agree)

:innocent:
P.S. In the future, please don’t forget to come back and click the 3 dots below the answer to mark a solution like this below the answer that helped you most:
Solution
so that the next person that has the exact same problem you just had will benefit from your post as well as your question will now be in the “solved” status.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.