Hacker News new | past | comments | ask | show | jobs | submit
> I rushed to run du -sh on everything I could, as that’s as good as I could manage.

I recently came across gdu (1) and have installed/used it on every machine since then.

[1]: https://github.com/dundee/gdu

gdu is really nice but ncdu, though slower, is very useful and is usually available on distro repos.
Have you used ncdu? I wonder how this compares.
I have an alias named usage with this in it:

    du -hs -- * .??* 2> /dev/null |  sort -h | tail -$LINES
There's also baobab when a GUI might help.
I use dust for this, but gdu looks nice, I'll give it a try. Thanks for sharing.
I also discovered gdu recently. It's really good. It saves me running du -h --max-depth=1 | sort -h a million times trying to find where the space has gone while you're stressing about production being down.