Free Up Disk Space On Amazon 2 Linux in a Pinch

One opportunity might be to purge the journal file, the “journalctl” command below purges all put the last 5 days.

df -h
/var/log/journal
sudo du -h --max-depth=1

sudo journalctl --vacuum-time=5d
df -h

Something else that might help:

find / -type f -size +200M


Leave a Comment

Scroll to Top