There's a way to figure out what is responsible for using up all of that space. A couple of ways, really. Here's the one I use, though: du -s -h -x /path/to/ | sort -h -r | head -n 10*
- du
- -s - display only a total for each argument
- -h - human readable values
- -x - do not cross file systems (in case you have another directory tree mounted under /var, which'll complicate figuring out what's in there for this purpose)
- sort
- -h - compare human readable numbers (e.g., 1G, 2T)
- -r - reverse sort (biggest first)
- head
- -n 10 (first ten lines or less)