Find large files (Linux)
The following command will return all files which are larger than 10Mb:
find / -size +10240000c -exec du -h {} \;
The following command will return all files which are larger than 10Mb:
find / -size +10240000c -exec du -h {} \;