Possible Duplicate:
Need an app that tells about file & folder sizes

How can I find the largest files on my hard drive? I am using Mac OS X 10.5.

link|improve this question

feedback

closed as exact duplicate by random Mar 21 '11 at 14:57

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

Have you tried GrandPerspectiv?

link|improve this answer
I download and seem it does not work on my Macbook. :-( – George2 Mar 21 '11 at 14:19
Any easy to use commands? – George2 Mar 21 '11 at 14:19
I haven't tried this, but i believe you might be able to use the unix find command. To find files larger than 20000k, try this: find / -type f -size +20000k – Ole_Brun Mar 21 '11 at 14:35
Thanks, question answered. – George2 Mar 22 '11 at 6:14
feedback
  • command line:

    du -ms $HOME/* | sort -n

and extend to where it looks promising

  • nice graphics:

Disk Inventory X : http://www.derlien.com/

link|improve this answer
+1 just for DI:X. Remains one of the staples of my OS X toolbox. – peelman Mar 21 '11 at 14:30
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.