bash – df to get space usage by volume

1
2
3
4
5
6
7
8
9
10
11
#display current Volume in 1024-byte blocks
df -k .

#display ALL Volumes in megabytes
df -m    

#display /home Volume in gigabytes
df -g /home  

#display ALL Volumes in HUMAN readable format
df -h