Hi soldier,
first I you should find out which files are larger than 1MB (sort by size from biggest to the smallest file). Login via SSH an try this:
# find / -xdev -type f -size +2048 -exec du -h {} \; |sort -nr
Or you should investigate which files has been modified between the last 10 (or more days) ordered by size.
# find / -xdev -type f -mtime -10 -print |du -h |sort -nr
andreas