I am running a Debian unstable with systemd
, at boot I have a few services which are marked as FAILED
(and not OK
), but the log is too fast for me to grab the name of the failed service.
I wonder if there is a way to get this boot log once the system is up and running (I am NOT speaking about the kernel log which are reachable with dmesg
but the services
). And, the service --status-all
does not really help because it only list the services that are on/off but not the one that have failed at boot.
So, any hint is welcome !
journalctl
, then searching for the names of the failed services. There are also options to that command to filter on service name from the start. – Tom Hunt Oct 21 '15 at 21:28