Disk Usage Analyzer for Linux

blazemonkey

Limp Gawd
Joined
Apr 20, 2006
Messages
157
Hi, I'm looking for something similar to windirstat that I can run on my headless debian box. I know of the du program, but I'd like to get a better visual of all the data. Any ideas?
 
What is windirstat?

In any case, I find df or du quite informative.
 
Hi, I'm looking for something similar to windirstat that I can run on my headless debian box. I know of the du program, but I'd like to get a better visual of all the data. Any ideas?

baobab does a pie-chart thing. Might be worth looking into.

I find myself repeatedly doing
Code:
du -m --max-depth=1|sort -n

to the point where I alias it to `dums` on many machines.
 
There's a surprisingly large and informative overview here, including the konqueror view mode (that I've been missing since kde3), and a rather nice ncurses-based one.
 
What is windirstat?

In any case, I find df or du quite informative.

Windirstat is a win32 disk usage analyzer, it's pretty great.

I find du to be too much work, no option to show hidden files, sorting, etc. I could make all that happen with a bash script, but i was hoping someone else beat me to it.
 
Windirstat is a win32 disk usage analyzer, it's pretty great.

I find du to be too much work, no option to show hidden files, sorting, etc. I could make all that happen with a bash script, but i was hoping someone else beat me to it.

Try ncdu, it's rather neat.
 
Back
Top