Skip to content

Instantly share code, notes, and snippets.

@markbirbeck
Created June 21, 2011 01:15
Show Gist options
  • Save markbirbeck/1037016 to your computer and use it in GitHub Desktop.
Save markbirbeck/1037016 to your computer and use it in GitHub Desktop.
Troubleshooting out of disk space

Check what's being used:

df -h

Find directories with lots of files in:

sudo find / -type d -size +100000c

Find large files:

sudo find / -type f -size +5000000c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment