systemd has boot profiling functionality, you might want to check out which part is slow.
back
1 comments
There's always lots of text flying by on the console; it might not be traceable to one single slow part.
Try "systemd-analyze plot >boot.svg" and it will produce a nice svg graph of how much time each step takes.
Also check out the other subcommands. For example, to find out why a certain service is taking long to start up, "systemd-analyze critical-chain $service"
I never knew that.. thanks, that is very interesting..