If you want to see how much space each folder ocuppes:
du -sh *
s: summarize h: human readable *: list of folders
2.
Use the df command:
df -h
3.du -sh * | sort -nr | more .. to sort by the largest files first
4. du -ak /var | sort -n -r | page