Séra Balázs@lemmy.world to linuxmemes@lemmy.world · 4 months agoRemember to not to forget clearing your journallemmy.worldimagemessage-square19fedilinkarrow-up134arrow-down10
arrow-up134arrow-down1imageRemember to not to forget clearing your journallemmy.worldSéra Balázs@lemmy.world to linuxmemes@lemmy.world · 4 months agomessage-square19fedilink
minus-squareMorethanevil@lemmy.fedifriends.sociallinkfedilinkarrow-up7·4 months agoCleanup Check current disk usage: sudo journalctl --disk-usage Use rotate function: sudo journalctl --rotate Or Remove all logs and keep the last 2 days: sudo journalctl --vacuum-time=2days Or Remove all logs and only keep the last 100MB: sudo journalctl --vacuum-size=100M How to read logs: Follow specific log for a service: sudo journalctl -fu SERVICE Show extended log info and print the last lines of a service: sudo journalctl -xeu SERVICE
minus-squarelseif@sopuli.xyzlinkfedilinkarrow-up3·4 months ago --vacuum-time=2days this implies i keep an operating system installed for that long
minus-squaremacniel@feddit.orglinkfedilinkarrow-up1·4 months agoI mean yeah -fu stands for “follow unit” but its also a nice coincidence when it comes to debugging that particular service.
minus-squareslazer2au@lemmy.worldlinkfedilinkEnglisharrow-up1·4 months ago sudo journalctl --disk-usage panda@Panda:~$ sudo journalctl --disk-usage No journal files were found. Archived and active journals take up 0B in the file system. hmmmmmm…
minus-squaresuperkret@feddit.orglinkfedilinkarrow-up0·edit-24 months agouser@u9310x-Slack:~$ sudo journalctl --disk-usage Password: sudo: journalctl: command not found
minus-squaremacniel@feddit.orglinkfedilinkarrow-up0·edit-24 months agoseems like someone doesn’t like systemd :)
minus-squaresuperkret@feddit.orglinkfedilinkarrow-up1·4 months agoI don’t have any feelings towards particular init systems.
Cleanup
Check current disk usage:
sudo journalctl --disk-usage
Use rotate function:
sudo journalctl --rotate
Or
Remove all logs and keep the last 2 days:
sudo journalctl --vacuum-time=2days
Or
Remove all logs and only keep the last 100MB:
sudo journalctl --vacuum-size=100M
How to read logs:
Follow specific log for a service:
sudo journalctl -fu SERVICE
Show extended log info and print the last lines of a service:
sudo journalctl -xeu SERVICE
this implies i keep an operating system installed for that long
something something nix?
I mean yeah -fu stands for “follow unit” but its also a nice coincidence when it comes to debugging that particular service.
panda@Panda:~$ sudo journalctl --disk-usage No journal files were found. Archived and active journals take up 0B in the file system.
hmmmmmm…
seems like someone doesn’t like systemd :)
I don’t have any feelings towards particular init systems.