Depending on how you build your filesystem, locating large files such as logs or other output from scripts, programs, or daemons can be frustrating at best. Since I'm not a GUI kind of guy this little snippet for the shell can save tons of time. (tested with KSH and Bash shells, likely should work with most if not all)

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

This will search beginning at the root / directory for all files over 20M. To adapt it for your use simply change the / to represent any beginning path you wish and the 20000k to the minimum filesize you would like to find.

Hard to get any easier than this. A detailed description of the all powerful awk can be found by reading the associated man pages should you be so inclined.

Happy hacking!