OtherMedium

Insufficient Disk Space: Causes and Quick Fix

The 'Insufficient Disk Space' error blocks system and application functionality. This article provides universal methods for quickly cleaning and expanding disk space across all major operating systems.

Updated at February 17, 2026
10-15 minutes
Easy
FixPedia Team
Применимо к:Windows 10/11macOS Monterey and newerUbuntu 20.04+All modern OSes

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

  1. Accumulation of system files and updates. The WinSxS folder in Windows, update caches (/var/cache/apt/ in Ubuntu), and local snapshots (Time Machine) can occupy tens of gigabytes.
  2. Huge temporary files. Applications (video editors, games, browsers) write temporary data that is sometimes not deleted.
  3. Browser and messenger caches. History, images, and media files in the cache can reach several gigabytes.
  4. Hidden virtual machine files and backups. ISO images, memory dumps, and database backups are often forgotten in folders like Downloads or Documents.
  5. Files locked by processes. Some actively running programs (logs, databases) can occupy space and may not appear in File Explorer until they are stopped.
  6. 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.

  1. Press Win + R, type cleanmgr, and press Enter.
  2. In the window, select the system drive (usually C:) and click "OK".
  3. 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.
  4. 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 -20 in 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.sys file, size = RAM capacity):
    powercfg -h off
    
    Run PowerShell as an administrator.
  • Reduce the size of the restore point:
    1. Control Panel → System → Advanced system settings → System Protection.
    2. Select the disk → "Configure".
    3. 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:

  1. Add a second SSD/HDD and move data or install the OS there.
  2. Use an external drive to archive large media files.
  3. 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

  1. Regular manual cleanup. Run

F.A.Q.

Why did disk space suddenly become low even though I didn't save much?
Is it safe to delete files in the Temp folder?
Can I move programs to another disk to free up the system drive?
What to do if the system drive (C:) is completely full?

Hints

Check disk usage
Clean temporary and system files
Delete large unnecessary files
Clear browser and application caches
Disable or remove unused programs
FixPedia

Free encyclopedia for fixing errors. Step-by-step guides for Windows, Linux, macOS and more.

© 2026 FixPedia. All materials are available for free.

Made with for the community