I\'m looking for the equivalent of right clicking on the drive in windows and seeing the disk space used and remaining info.
df -tk
for Disk Free size in 1024 byte blocks
su -sm ./*
You can see every file and folder size (-sm=Mb ; -sk=Kb) in the current directory like a list. This way runs in all Unix/Linux environment.
Use the df command:
df -h
df -g .
Option g for Size in GBs Block and . for current working directory.