Skip to content

Instantly share code, notes, and snippets.

@rma92
Created November 8, 2025 17:04
Show Gist options
  • Select an option

  • Save rma92/8fe6c1e407023f7ad82ce1a0eabe37a0 to your computer and use it in GitHub Desktop.

Select an option

Save rma92/8fe6c1e407023f7ad82ce1a0eabe37a0 to your computer and use it in GitHub Desktop.
Find largest files on Linux / Unix / BSD

Find large files on Linux

Run this du command in the directory from which you want to search. Adjust it to exclude other mounted file systems

cd /
sudo du -sh --exclude=proc --exclude=media --exclude=mnt --exclude=tank * | sort -rh | head -n 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment