I Recently noticed an lightweight app (Sonarr) wasn't running, so when into webmin to find a fidk fill error. '/' was 100% full. I have hunted around and sound a few commands to get a bit of short term space back (down to 96%), but there shouldn't be that much usage. I'm just running Ubuntu Server LTS18 and a couple of apps on a 120GB SSD. But I am seeing the below and cannot (and do no know how to) find where the heavy directories and/or file are in /.
Filesystem Size Used Avail Use% Mounted on
udev 7.3G 0 7.3G 0% /dev
tmpfs 1.5G 2.8M 1.5G 1% /run
/dev/sde2 110G 104G 4.6G 96% /
tmpfs 7.3G 12K 7.3G 1% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 7.3G 0 7.3G 0% /sys/fs/cgroup
/dev/loop0 90M 90M 0 100% /snap/core/7917
/dev/loop1 90M 90M 0 100% /snap/core/8039
sudo du /* -sch
. You will see which directory takes too much space. Then you can dig into that directorysudo du /directory/*
, to see what takes space there. And so on until you find what is your problem. – nobody Nov 23 '19 at 14:11