A better way to sort through journalctl logs
if you’ve ever been kicked to emergency mode or if your system reboots into emergency mode, they usually will tell you to run “journelctl -xb” to view the logs, but this will show you all the logs and is a lot to sort through.  A better way would be to get get straight to the meat:
journalctl -xb -p3Â
this will show you all the logs that are of type “err” or lower (emerg, alert, crit) so you can get to your root cause quicker















