How to find largest file in directory
sudo du -a / 2>/dev/null | sort -n -r | head -n 10
In the command avobe we use pipes to sort the results, and then we keep with the top 10 biggest files.
2>/dev/null
is to redirect stderr to the /dev/null, aka to avoid printing permission denied errors.