I've got three drives one for /home, one for backups in /mnt, and a Nvme drive for boot which is showing as full. I have no idea whats filling it. So far I've tried all the clear/cleaning commands I can find but only managed to clear about 5% of the drive. I'm not sure where or what else to check.
Heres the df -h
output and partitions list:
df -h
: https://pastebin.com/aTB4KcsB
df -ha
: https://pastebin.com/JnFBpgMT
sudo du /* -sch
: https://pastebin.com/PhHShWHg
Lmk if you need more
baobab
(GUI) orncdu
(CLI) to find what is eating up your space. – pLumo Sep 04 '20 at 20:31sync && sync && sync
. Or maybe try rebooting the system. – Terrance Sep 04 '20 at 20:38du /path/to/check
to find display disk usage. Next, find out what's spamming the logs, and search for a fix. – Artur Meinild Sep 04 '20 at 20:38du / -x -d5| sort -n
This wll put your greedy directories at the bottom of the list. You can dig deeper by searching the greedy directories themselves. – Stephen Boston Sep 04 '20 at 20:43/var/log
is a directory, not a file. There are different log files in that dir that you should have a look at. If the log files are unusually large, it doesn't really help to delete them, you must find out what's causing the issue. – Artur Meinild Sep 04 '20 at 20:47baobab
is a tool with a graphical user interface for this purpose. See this link – sudodus Sep 05 '20 at 12:53