← Back to Troubleshooting
Troubleshooting

Your Disk Suddenly Filled Up

Something is out of space right now and things are breaking. What to actually check and safely clean up, not just "delete some models."

6 minute read
Last tested: August 2026 · Ollama 0.33.2 · Docker 29.7.2

First, confirm what's actually full

# Mac/Linux
df -h

On Windows, check drive properties from File Explorer. Confirm which drive is actually full before doing anything - if it's not the drive Ollama and Docker are using, the fix is somewhere else entirely.

Find out what's actually using the space

Model weights are almost always the biggest consumer on a local AI setup - the storage guide covers the real math, but a few models can easily add up to tens of gigabytes. Check the models directory directly rather than guessing:

# Mac
du -sh ~/.ollama/models

# Linux
sudo du -sh /usr/share/ollama/.ollama/models

See what's actually installed, and how much each model is worth in disk space, with:

ollama list

Safe cleanup, in order

Ollama and Docker both handle a genuinely full disk badly, not gracefully. A pull that runs out of room mid-download can leave a corrupted, unusable file rather than a clean error - see Model Downloads Keep Failing or Coming Out Corrupted if that's already happened. Free up space before retrying, not after.

Prevent this from happening again

The storage guide covers sizing a drive with real headroom instead of the exact minimum - worth revisiting once the immediate problem is solved, so this doesn't repeat itself in a month.

Written from hands-on security operations experience. More about this site →