Every wonder what and where the largest files are on you Linux box? Use the following command to locate them.
sudo find / -type f -exec du -Sh {} + | sort -rh | head -n 5
Every wonder what and where the largest files are on you Linux box? Use the following command to locate them.
sudo find / -type f -exec du -Sh {} + | sort -rh | head -n 5