Mac memory allocation visualization tool?
Jan. 13th, 2009 05:18 pm![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
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
Date: 2009-01-13 10:51 pm (UTC)no subject
Date: 2009-01-13 11:26 pm (UTC)no subject
Date: 2009-01-13 10:54 pm (UTC)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
Date: 2009-01-13 11:18 pm (UTC)Huh, I've got Omni Outliner installed apparently, and I've no clue what it is. I should delete that
no subject
Date: 2009-01-13 11:22 pm (UTC)no subject
Date: 2009-01-14 12:24 am (UTC)no subject
Date: 2009-01-14 03:42 am (UTC)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.