Remix.run Logo
entropie 21 hours ago

> 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

dizhn 19 hours ago | parent | next [-]

gdu is really nice but ncdu, though slower, is very useful and is usually available on distro repos.

seabrookmx 11 hours ago | parent | prev | next [-]

I can't recommend `dust` enough: https://github.com/bootandy/dust

mixmastamyk 8 hours ago | parent | prev | next [-]

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.
illusive4080 20 hours ago | parent | prev | next [-]

Have you used ncdu? I wonder how this compares.

NitpickLawyer 20 hours ago | parent | prev | next [-]

I use dust for this, but gdu looks nice, I'll give it a try. Thanks for sharing.

Neil44 20 hours ago | parent | prev [-]

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.