After running fsck on dev/sda4/manually my laptop is not rebooting.
When rebooting it is showing
dev/sda4:recovering journal
devsda4: clean, 1557818/45875700 files, 355817474/183500800 blocks
failed to listen on sylog ticket
Dependency failed for system logging service
What can I do?
fsck
? Also, are you aware that 21.10 will be EOL in less than a week? It's strongly advised that you release upgrade before this happens. – Nmath Jul 08 '22 at 19:12fsck
as any more writes put data on your drive at risk; andfsck
will write it errors are detected; ie. should only be done if it's not hardware issue. Check your logs & perform SMART & like hardware checks (same as if it was windows that experienced this) – guiverc Jul 09 '22 at 00:36dmesg
etc) would be lost given reboot (easiest place to look), but systemd journals will still exist, they just don't provide the messages after problem was detected which went todmesg
only.... Find & fix the cause; not the symptom; or it'll happen again & again... – guiverc Jul 09 '22 at 00:38sudo dmesg
to see system messages for the current session (scroll/page/search as appropriate); but they are not stored on disk which means if you reboot/shutdown they are lost & you'll see only messages since current boot. As systemd keeps it journal on disk it's messages can be seen for months/years unless you have a severe problem and file-system flips RO where they'll stop being saved; but you look before you reboot/shutdown usingdmesg
. – guiverc Jul 09 '22 at 05:15