find . -type f -size +1MDo an ls on those files:
find . -type f -size +1M -lsFind files larger than 100K in /etc with sizes expressed in k (for kilo), M (for mega):
find /etc -type f -size +100k -exec ls -lh {} \;Find size of packages: http://www.davekb.com/search.php?target=rpm+size