I'm looking for the equivalent of right clicking on the drive in windows and seeing the disk space used and remaining info.
|
|
Look for the commands |
||
|
|
|
|
du -sm * => RULLLLLEZ |
||
|
|
|
|
du -sm * => RULLLLLEZ |
||
|
|
|
|
I love doing du -sh * | sort -nr | more .. to sort by the largest files first |
||||||
|
|
|
If you want to see how much space each folder ocuppes: du -sh * s: summarize h: human readable *: list of folders |
||
|
|
|
|
Use the df command: df -h |
||
|
|
