Séra Balázs to linuxmemes • 5 months agoRemember to not to forget clearing your journalimagemessage-square62arrow-up1676arrow-down110
arrow-up1666arrow-down1imageRemember to not to forget clearing your journalSéra Balázs to linuxmemes • 5 months agomessage-square62
minus-squareMorethanevillinkfedilink2•edit-25 months agoIf logrotate doesn’t work, than use this as a cronjob via sudo crontab -e Put this line at the end of the file: 0 0 * * * journalctl --vacuum-size=1G >/dev/null 2>&1 Everyday the logs will be trimmed to 1GB. Usually the logs are trimmed automatically at 4GB, but sometimes this does not work
minus-square@[email protected]linkfedilink5•5 months agoIf we’re using systemd already, why not a timer?
minus-squareMorethanevillinkfedilink3•5 months agoCron is better known than a systemd timer, but you can provide an example for the timer 😃
minus-square@[email protected]linkfedilink5•edit-25 months agoReally, the correct way would be to set the limit you want for journald. Put this into /etc/systemd/journald.conf.d/00-journal-size.conf: [Journal] SystemMaxUse=50M Or something like this using a timer: systemd-run --timer-property=OnCalender=daily $COMMAND
If logrotate doesn’t work, than use this as a cronjob via
sudo crontab -e
Put this line at the end of the file:0 0 * * * journalctl --vacuum-size=1G >/dev/null 2>&1
Everyday the logs will be trimmed to 1GB. Usually the logs are trimmed automatically at 4GB, but sometimes this does not work
If we’re using systemd already, why not a timer?
Cron is better known than a systemd timer, but you can provide an example for the timer 😃
Really, the correct way would be to set the limit you want for journald. Put this into
/etc/systemd/journald.conf.d/00-journal-size.conf
:Or something like this using a timer:
systemd-run --timer-property=OnCalender=daily $COMMAND
Thanks for this addition ☺️