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:
1 |
sudo du -ahx / | sort -rh | head -20 |
taken from Linux Journal Issue 275 March 2017