Skip to main content

Safely Delete

WARNING

DO NOT DELETE THE PATH DIRECTLY.

/var/log/journal/

Commands

Get Disk Usage

journalctl --disk-usage
Archived and active journals take up 3.9G on disk.

Delete by Days

journalctl --vacuum-time=7d

Delete by Size

journalctl --vacuum-size=500M

Single File Size

journalctl --vacuum-file-size=100M

Configurations

PATH
/etc/systemd/journald.conf
SystemMaxUse=500M         # 最大总使用空间
SystemMaxFileSize=100M    # 单个文件最大大小
SystemMaxRetentionSec=7d  # 最长保留时间
systemctl restart systemd-journald