handy trick to find out the biggest directories on server
if you’re running out of disk space, run this
du -ax | awk '{if($1 > 10240) print $1/1024 "MB" " " $2 }' | sort -rn | head -n 50
(Source: rimuhosting.com)