Linux - Sorting folders by size

The problem

So, how do you identify, what’s consuming all of the file system in less than 30sec ?

The solution

When you’re not in the mood for googling, and most importantly there’s a JLB around, you just ask and boom:

cd /
du -sch * | sort -h

Don’t thank me.