Find out largest directories and files

sudo du -ah / | sort -rh | head -n 20

Adjust the file path and number of items to return using the -n parameter for head.