Skip to content

Instantly share code, notes, and snippets.

@grumpysi
Created October 21, 2020 10:44
Show Gist options
  • Save grumpysi/4cb8602de54887c0217c26c92e21a80d to your computer and use it in GitHub Desktop.
Save grumpysi/4cb8602de54887c0217c26c92e21a80d to your computer and use it in GitHub Desktop.
Find which folder is using too much disk space on Ubuntu
du -cha --max-depth=1 / | grep -E "M|G"
du -cha --max-depth=1 /var | grep -E "M|G"
du -cha --max-depth=1 /srv/www/ | grep -E "M|G"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment