Is your /var/log/journal overweight and bloated? For example a decent install of Debian 11 with most applications and services ends up being about 4.9G with the journal taking a few gigs.
du -hs /var/log/journal/
1.3G /var/log/journal/
By default in a lot of distributions there is no maximum size so it will keep growing. This is especially problematic for embedded distributions and devices, but is also a huge waste of space. In low IO storage devices it can actually create huge IOWait as well (eg. if you are running off a USB stick).
Edit this file:
/etc/systemd/journald.conf
Create a new line under the commented out #SystemMaxUse= line
And set it like this:
SystemMaxUse=50M
Where 50M is going to be the maximum size of /var/log/journal
It should now look like below.
Restart journald to apply the new smaller max setting:
systemctl restart systemd-journald
du now shows the size is the maximum you set:
du -hs /var/log/journal/
49M /var/log/journal/
var, debian, mint, ubuntu, linux, howot, fixis, overweight, bloated, install, applications, gigs, hs, default, distributions, maximum, problematic, embedded, devices, io, iowait, eg, usb, edit, etc, systemd, journald, conf, commented, systemmaxuse, restart, systemctl,