Find files larger then
In most distributions including RH / SL (Scientific Linux) / CentOS / Fedora / Ubuntu / MintLinux the following commands can be used to achieve this purpose:
find . -type f -size +10000k
find /root/ -type f -size +10000k -exec ls -altri {} \;
find . -type f -size +10000k -exec ls -altri {} \;
Cheers,
TK