To find files over 30M the following could be used:

find / -type f -size +30000k -exec ls -lh {} \; | awk ‘{ print $5 “: ” $9 }’ |sort -n

Helps if you are running out of space. It can take a while to complete though so have patience!