I have a problem with hidden disk usage on my Ubuntu 22.04. As you can see, the ncdu
utility only finds ~30GB on the system:
Whereas Ubuntu's System Monitor finds that 88 GB are being used:
What's going on here?
Output of df -h
:
I have a problem with hidden disk usage on my Ubuntu 22.04. As you can see, the ncdu
utility only finds ~30GB on the system:
Whereas Ubuntu's System Monitor finds that 88 GB are being used:
What's going on here?
Output of df -h
:
sudo ncdu -x /
– PonJar May 26 '23 at 20:16open
,unlink
, and use them very privately, with guaranteed deletion no matter how the programexit
s. Files can get really big, if some budding sysadmin deleting a log file that some process has open (and is about to write block N+1) without notice. You can investigate open files withsudo lsof
, followed by lots of options. Readman lsof sudo
. – waltinator May 27 '23 at 01:13