this post was submitted on 11 Jul 2024
34 points (100.0% liked)

Linux

5083 readers
154 users here now

A community for everything relating to the linux operating system

Also check out !linux_memes@programming.dev

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 1 year ago
MODERATORS
top 3 comments
sorted by: hot top controversial new old
[–] boredsquirrel 7 points 3 months ago

BTRFS support?

[–] FizzyOrange@programming.dev 6 points 3 months ago

I have yet to see one of these that gives any benefit over ncdu, which is amazing. I guess if you need to log the output this makes sense but that's pretty niche.

[–] thingsiplay@beehaw.org 5 points 3 months ago* (last edited 3 months ago)

I personally use my own script over du itself. It also lists the biggest files and has same options -n and -d as well. :D https://github.com/thingsiplay/biggest It will count hardlinks only once, therefore list only the first found file of a hardlink; even across other directories.

Edit: BTW directory sizes are also output in an instant: biggest /usr/bin and biggest -n 10 /usr/bin/* to list the 10 biggest files in that directory.