vote up 4 vote down star
2

I'm looking for the equivalent of right clicking on the drive in windows and seeing the disk space used and remaining info.

flag

62% accept rate
Oh UNIX GURU! I Summon YOU!!! – Maxim Oct 23 '08 at 17:22

6 Answers

vote up 14 vote down check

Look for the commands du (disk usage) and df (disk free)

link|flag
vote up 0 vote down

du -sm * => RULLLLLEZ

link|flag
vote up 0 vote down

du -sm * => RULLLLLEZ

link|flag
vote up 2 vote down

I love doing du -sh * | sort -nr | more .. to sort by the largest files first

link|flag
1  
You might want to make that 'du -s *...' instead. 'sort -n' thinks that 1015K is larger than 65M. – Dave Sherohman Oct 25 '08 at 22:09
true... my bad... also.. one must be careful depending on the system... BSD support sort -nr ... it's different in linux... – Paulo Delgado Oct 31 '08 at 19:03
vote up 0 vote down

If you want to see how much space each folder ocuppes:

du -sh *

s: summarize h: human readable *: list of folders

link|flag
vote up 8 vote down

Use the df command:

df -h

link|flag

Your Answer

Get an OpenID
or

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