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 {} \;
Hi,
Thanks for your tips! You are really helping me out while I am struggling with my Linux-based Pizzabox.
So, if I want to search in a specific folder, could I just specify the path to the folder after “find”?
Thanks in advance!
The Dude.
No, to search in a specific folder you must change the first parameter.
For example in ‘/home/’ instead of ‘/’.