The following command searches for files over 20mb all over your hard disk

You can search a specific directory by specifying a directory such as find /var/www and the size can be modified by increasing or decreasing the +20000k

find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'