How can I find the biggest directories in unix / Ubuntu?
Try: du --max-depth=7 /* | sort -n
- it won't just tell you directories, and there will be duplicates, but it will list everything 7 levels deep and sort them by size order.
My favorite tool for this task is ncdu.