Mac memory allocation visualization tool?
Somebody on my flist posted a program that would let me see where all my memory is being allocated on my Mac. The problem is that I've got only a couple Gigs of HD space left (used 89 Gigs of 93), and I just moved all my document files off onto an external HD, and that was only 2-4 Gigs. So I want to know if the rest are images, audio, programs I don't use, or what. Help!
no subject
no subject
no subject
There's a trial version that lets you see stuff; the pay version gives you a delete button. (No kidding.)
I've generally been quite pleased with their software, although I hardly ever use this particular application. (OmniGraffle is the bomb, and the outliner isn't bad either.)
no subject
Huh, I've got Omni Outliner installed apparently, and I've no clue what it is. I should delete that
no subject
no subject
no subject
Open an xterm:
> cd /
> du -k . | sort -n
That will recursively list all the programs and directories and how large they are, with the number of kilobytes in front of it. Piping it to sort and using the -n option allows you to sort those numerically, causing the largest files and directories to bubble to the bottom.
Not visual, but it should do what you want. If you want to exclude some directories, you could just not start at the root. du -s only displays the sizes of all the files and directories in that directory, aggregated.