find the nn largest files in your linux system

Problem

You would like to know what are the biggest nn files in your linux computer.

Solution

Run the following to give you the 20 largest files:

sudo du -ahx / | sort -rh | head -20

taken from Linux Journal Issue 275 March 2017