Find largest file in directory subdirectories

Post Type: 
Tutorial
du -all |sort -nr|more
will find all file sizes in the current directory/subdirectories and sort
them by size.

or

find / -size +1G -exec ls -l {} \;

find all files bigger than 1Gigabyte on the whole system