Hard disk space, like CPU speed, isn't increasing as fast as it used to:
Still, 400gb drives can be had, and it's not difficult to build a terabyte array if you need to. Which begs the question-- where does all that hard drive space go?
Two tools I use to demystify the "gee, I had 50gb free yesterday" conundrum are overdisk
... and treesize.
Stuart Dootson also pointed out spacemonger, another graphical representation:
I like the Tufte-esque visual style of overdisk, but I'm not convinced the information is any more useful when presented in that format. I run Treesize on servers, too, and I'd like to find a command-line equivalent of Treesize if anyone knows of one.
Posted by Jeff Atwood View blog reactions
« Websites as Pinball Machines Universally Annoying Remotes, Revisited »
I like SpaceMonger (http://www.werkema.com/software/spacemonger.html) - the graphical representation is (IMO) of use!
Staurt Dootson on January 24, 2005 03:56 AMFor command line disk usage, I use du.exe from http://unxutils.sourceforge.net/. Combined with sort.exe from the same place (I rename sort.exe gsort.exe to avoid conflicts), I can:
()> du --kilobytes --all --total | gsort --general-numeric-sort --reverse
1231198 total
1231198 .
481482 ./dllcache
52494 ./config
42240 ./config/software
36941 ./mui
33693 ./wbem
22598 ./drivers
20596 ./IME
20317 ./spool
20291 ./spool/drivers
19687 ./spool/drivers/w32x86
...
(I bet this will look pretty ugly in your comments section...sorry!)
(Correction: Preview shows that it looks just fine. Yay!)
My vote is for SequoiaView (http://www.win.tue.nl/sequoiaview/), which has a cleaner interface than SpaceMonger. It also has a nice feature that allows you to colour code the files based on their extension, so you can see quickly see how much space is being taken up by various file types.
Brant LeClercq on January 24, 2005 01:07 PMYou might try diruse, which apparently is a Windows version of Unix's du:
http://www.microsoft.com/windows2000/techinfo/reskit/tools/existing/diruse-o.asp
If you like the du Unix command, then you get a port from the SourceForge project, UnxUtils:
https://sourceforge.net/projects/unxutils/
Heaps of other useful GNU Unix tools are included in this collection.
Praj Basnet on October 14, 2007 05:46 PM| Content (c) 2008 Jeff Atwood. Logo image used with permission of the author. (c) 1993 Steven C. McConnell. All Rights Reserved. |