Here are the important lines of /etc/systemd/journald.conf
[Journal] Storage=volatile RuntimeMaxUse=32M RuntimeMaxFileSize=8M RuntimeMaxFiles=4 ForwardToConsole=no ForwardToWall=noThat will log to RAM only, a maximum of 32M in up to 4 files, so it should automatically prune 25% when it gets full, but I'm often having to do it manually with:-
journalctl --vacuum-files 3
It's the config that needs to be optimised.
---druck