What the "Insufficient Disk Space" Error Means
The "Insufficient Disk Space" error (commonly Low Disk Space or Disk Full) is a system notification that appears when free space on the selected disk partition (usually the system C: drive in Windows or / in Linux/macOS) falls below a critical threshold (typically 1-2 GB). The system and many programs cannot create new temporary files, save data, or install updates. In Windows, it is often accompanied by a red indicator in File Explorer and a balloon notification. In Unix-like systems, commands begin to fail with the error No space left on device.
Causes
- Accumulation of system files and updates. The
WinSxSfolder in Windows, update caches (/var/cache/apt/in Ubuntu), and local snapshots (Time Machine) can occupy tens of gigabytes. - Huge temporary files. Applications (video editors, games, browsers) write temporary data that is sometimes not deleted.
- Browser and messenger caches. History, images, and media files in the cache can reach several gigabytes.
- Hidden virtual machine files and backups. ISO images, memory dumps, and database backups are often forgotten in folders like
DownloadsorDocuments. - Files locked by processes. Some actively running programs (logs, databases) can occupy space and may not appear in File Explorer until they are stopped.
- An initially too small partition. Especially relevant for small-capacity system SSDs (128-256 GB) in 2026.
Solutions
Method 1: Quick Cleanup with Built-in Tools (Windows)
Disk Cleanup (cleanmgr) is the safest and fastest first step.
- Press
Win + R, typecleanmgr, and press Enter. - In the window, select the system drive (usually
C:) and click "OK". - In the list, check:
- Temporary files — the main source of junk.
- Recycle Bin — if not empty.
- Windows Update Cleanup — can weigh several gigabytes.
- Temporary Internet Files.
- Click "OK" → "Delete Files". Confirm.
💡 Tip: After the main scan, click "Clean up system files" (requires administrator privileges). This will reveal additional categories, including old restore points.
Method 2: Manual Check for Large Files and Folders
Use a disk analyzer to find the "elephant."
- For Windows: WinDirStat (free) or the built-in "Disk Analysis" in "Storage" settings.
- For macOS: DaisyDisk (paid, but a trial version is available) or the built-in "Storage Management."
- For Linux:
sudo du -sh /* | sort -rh | head -20in the terminal will show the 20 largest directories in the root.
Delete any unnecessary archives, videos, or duplicates found. Pay special attention to Downloads, Desktop, and VirtualBox VMs folders.
Method 3: Clearing App and Browser Caches
- Browsers: Chrome/Edge/Firefox:
Settings → Privacy and Security → Clear browsing data. Check "Cached images and files." - Steam/Epic Games: In the client settings, look for "Downloads" → "Clear Download Cache."
- Adobe Creative Cloud, Office: In the application settings, look for "Clear Cache" or "Reset Settings."
Method 4: Managing Restore Points and Hibernation (Windows)
- Disable hibernation (frees up the
hiberfil.sysfile, size = RAM capacity):
Run PowerShell as an administrator.powercfg -h off - Reduce the size of the restore point:
Control Panel → System → Advanced system settings → System Protection.- Select the disk → "Configure".
- Reduce "Max Usage" to 5-10% (or disable it if you don't use it).
Method 5: Expanding the Disk (if physically possible)
If there is no junk on the disk and space is constantly running out, consider a hardware solution:
- Add a second SSD/HDD and move data or install the OS there.
- Use an external drive to archive large media files.
- In Windows 10/11, you can shrink a volume to free up space for extending the system drive (via "Disk Management"), but this is risky. It's better to move data to another disk and then extend the system drive.
Prevention
- Regular manual cleanup. Run