I use ‘du’ often to see what directories are using up all the space. Often, this gets annoying as it delves down in to several thousand directory trees, so I use the following to keep it limited:
du -h –max-depth=1
This will spit out, in human readable format, the size of each of the directories in the current directory, limiting the output to one directory. Try it to see what I mean.