Finding files larger than … in Linux / Blog, Dialer Tips, General Tips / By admin In order to locate any files larger than a certain size, please run the following command. The below example searches for all files larger than 500MB.find / -size +500MTo display more details and sort the items in the list by size, run the following:find / -type f -size +500M -exec du -h {} \; | sort -n