How to find the biggest files or directories on Linux
The best way to find large files or directories on your Linux system is to use the command line.
du -Sh | sort -rh | head -n 15
It will print the top-15 biggest files located in the current directory (and its all sub-directories).
Sample Output: