Back to Blog

What Is Purgeable Space on Mac, and How Do You Get It Back?

Why your Mac shows free space it will not give you, what sits inside purgeable, and the commands that release it when a disk-hungry job cannot wait for macOS to do it.

Published August 31, 2026 Author Vladimir Chemeris Read time 4 min read
Mac StoragePurgeableSnapshots

Your Mac says 40 GB are available. An installer says there is not enough room. Both are telling the truth, because a chunk of that 40 GB is purgeable: space macOS is holding for something useful and will hand back when it decides you need it.

Main rule: purgeable space is not a leak to hunt down. Release it when a specific job needs the room, and leave it alone the rest of the time.

Quick answer

  1. Check what the filesystem really has: df -h /System/Volumes/Data.
  2. List local snapshots: tmutil listlocalsnapshots /.
  3. Release around 20 GB at once: sudo tmutil thinlocalsnapshots / 21474836480 4.
  4. Empty the Trash, which sometimes accounts for the whole difference.
  5. Turn off Optimize Mac Storage when iCloud offloading is the source.
  6. Restart the Mac, then measure again before deciding anything is wrong.

Where the number comes from

Finder and Disk Utility report available space as “what you can use”, which includes storage the system is prepared to give up. The filesystem reports what is on disk right now. The gap between the two is purgeable.

df -h /System/Volumes/Data

Run that and compare it with the figure in Finder. On a Mac with a week of local snapshots, the difference lands in the tens of gigabytes.

What sits inside purgeable

Three sources cover almost every case.

  • Local Time Machine snapshots. macOS keeps point-in-time copies on the internal disk, not only on your backup drive. They expire on their own and get thinned when space runs short, and they are usually the largest single contributor.
  • Files kept offline by Optimize Mac Storage. Documents already uploaded to iCloud, watched TV purchases, old mail attachments. Their local copies can go because the originals live elsewhere.
  • Caches the system treats as disposable. The same material described in Is It Safe to Delete ~/Library/Caches on Mac?, from the system’s point of view rather than yours.

When it becomes a real problem

macOS releases purgeable space when an app asks the filesystem for room and there is none. That works for everyday copying and downloading.

It fails in three situations:

  • an installer or a game launcher checks free space upfront and refuses to start;
  • Disk Utility cannot resize or erase a volume because the container has no headroom;
  • a virtual machine or disk image needs a large contiguous allocation right away.

In those cases you have to release the space yourself.

Releasing local snapshots

Start by looking at what is there.

tmutil listlocalsnapshots /

The output lists snapshot names with their timestamps. Then ask macOS to reclaim a specific amount:

# release roughly 20 GB, at the highest urgency level
sudo tmutil thinlocalsnapshots / 21474836480 4

The number is bytes, and the trailing 4 is the urgency. Level 4 tells macOS to be aggressive rather than polite about which snapshots go.

To remove one specific snapshot instead:

sudo tmutil deletelocalsnapshots 2026-08-30-101500

Then check the free space again. On most Macs this single step closes the gap.

The other sources

Trash. Deleted files stay counted until the Trash is empty. Obvious, and still the answer often enough to check first.

Optimize Mac Storage. In System Settings, under General and then Storage, macOS offers to keep only recent files locally. Turning it off makes iCloud pull everything back down, which needs the space rather than freeing it, so use this one deliberately: the goal is to stop new offloading, not to reclaim anything today.

A restart. Some caches and temporary allocations only clear on boot. Cheap to try before anything more involved.

What not to do

Skip the tools that advertise a button for deleting purgeable space. There is nothing to delete that macOS will not release on request, and a cleaner that goes after snapshots without telling you is removing your fastest path back to a file you deleted this morning.

Writing a giant dummy file to force macOS into releasing space is the other trick that circulates. It works, and it also spends an hour of disk writes to accomplish what one tmutil command does in seconds.

Bottom line

Purgeable space means macOS is holding storage it can release on demand, mostly local snapshots. Leave it alone during normal use, because those snapshots are worth having. When a specific job needs room and cannot wait, list the snapshots, thin them with tmutil, empty the Trash, and measure again. If the gap survives all of that, the problem is ordinary files, and finding them is a different job.

About the author

Vladimir Chemeris

Founder, StorageRadar

Vladimir Chemeris builds StorageRadar, a privacy-first macOS storage analysis app focused on review-first cleanup, developer storage, and before-and-after visibility.

Frequently asked questions

What is purgeable space on Mac?

Purgeable space is storage that macOS counts as occupied today but is willing to release when something needs room. Local Time Machine snapshots, files kept offline by Optimize Mac Storage, and caches the system treats as disposable all land in that bucket. Disk Utility reports it next to the available figure, which is why free space looks different depending on where you read it.

Why does my Mac show purgeable space instead of free space?

macOS holds on to snapshots and offloadable files until the space is genuinely needed, because keeping them is useful and releasing them is fast. The number is not a bug or a leak. It becomes a problem only when an installer, a disk image, or a partition operation checks free space upfront and refuses to start.

How do I remove purgeable space on Mac?

Start by listing local snapshots with tmutil listlocalsnapshots / and thinning them with sudo tmutil thinlocalsnapshots / 21474836480 4, which asks macOS to release about 20 GB at the highest urgency. Emptying the Trash, restarting, and turning off Optimize Mac Storage cover the rest of the usual sources.

Is purgeable space safe to delete?

Yes, in the sense that macOS deletes it on its own whenever free space runs short. The one item worth thinking about is local Time Machine snapshots: they are your fastest route back to a file you deleted an hour ago, so thin them when you need the room rather than as routine maintenance.

Why does du show more free space than Finder?

Finder reports available space including what it can purge, while df and du report what the filesystem currently has. On a Mac with 30 GB of snapshots the two numbers can differ by exactly that much, and neither of them is wrong.

Do local snapshots go away on their own?

Time Machine local snapshots expire on their own and macOS thins them automatically when the disk gets tight. Waiting works for daily use. Forcing the issue with tmutil is for the moment when a build, an export, or an installer needs the space right now.

See the real numbers behind the free-space figure.

StorageRadar reads your disk locally and shows exact paths and sizes, so the gap between what Finder promises and what the filesystem has stops being a mystery.