I have an issue with journalctl, I set it to use 100M maximum in my journald.conf:
[Journal]
Compress=yes
SyncIntervalSec=5m
SystemMaxUse=100M
ForwardToSyslog=no
ForwardToKMsg=no
ForwardToConsole=no
ForwardToWall=yes
LineMax=48K
ReadKMsg=yes
Which for some reason gives me only 2 days of logs. When I run journalctl --disk-usage it shows:
$ sudo journalctl --disk-usage
Archived and active journals take up 106.0M in the file system.
However, when I run journalctl | wc -c, it shows there is only 7MB of logs:
$ sudo journalctl | wc -c
7429593
Why is journalctl only giving 7MB of logs (2 days) while using 106MB? Where is the extra space going?