views:

2360

answers:

6

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

+14  A: 

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

MrZebra
+8  A: 

Use the df command:

df -h

Russ
A: 

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

du -sh *

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

German
+2  A: 

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

Paulo Delgado
You might want to make that 'du -s *...' instead. 'sort -n' thinks that 1015K is larger than 65M.
Dave Sherohman
true... my bad... also.. one must be careful depending on the system... BSD support sort -nr ... it's different in linux...
Paulo Delgado
A: 

du -sm * => RULLLLLEZ

A: 

du -sm * => RULLLLLEZ