Tech Entertainer

Why Is 'System Data' So Huge on macOS Tahoe? How to Clear It

By Tech Entertainer Team · 2026-08-30

Why Is 'System Data' So Huge on macOS Tahoe? How to Clear It

You open Apple menu > About This Mac > More Info > Storage Settings and System Data reads 400GB, 550GB, sometimes over 700GB. Your Applications, Documents, and Photos categories add up to a fraction of this number. The drive says it is nearly full, but you cannot find where the space went. This has been one of the most reported problems since macOS Tahoe (26.0) shipped in September 2025, and it is still turning up on Apple Community and MacRumors forums as of the 26.3 update in mid-2026.

Why Does macOS Tahoe Show So Much System Data?

System Data is not one folder. It is a catch-all category macOS uses for anything it cannot cleanly sort into Apps, Documents, Photos, or Mail. On Tahoe, three separate issues stack on top of each other and inflate the number:

  • Time Machine local snapshots piling up on your internal drive, even if you never turned Time Machine on
  • A bloated or corrupted Spotlight index stored in the hidden .Spotlight-V100 folder
  • A storage-panel calculation bug overstating real usage, documented across multiple Apple Community threads

You do not need to guess which one applies to you. Work through the checks below in order. Each one takes under five minutes and does not require reinstalling macOS.

How Do I Check My Real Free Space Before Doing Anything?

Open Terminal and run df -H / to see actual disk usage, separate from what the Storage Settings panel reports. This tells you whether you have a real space problem or a display bug.

Open Applications > Utilities > Terminal and type:

df -H /

Press Return. Look at the "Used" and "Avail" columns. If Terminal reports 80GB used and 400GB available, but Storage Settings claims your drive is almost full, you are looking at the display bug Apple has acknowledged on discussions.apple.com. Restarting your Mac often corrects the panel's number without deleting anything, since the bug is in how Tahoe calculates and caches the figure, not in your actual disk contents.

If df -H / confirms the drive is genuinely full, move to the snapshot check next.

Are Time Machine Local Snapshots Eating Your Storage?

Local snapshots are the single biggest cause of inflated System Data on Tahoe, and they build up even on Macs where Time Machine was never enabled. Check them with tmutil listlocalsnapshots / in Terminal.

Run this command:

tmutil listlocalsnapshots /

You will see a list of dated snapshots, something like com.apple.TimeMachine.2026-08-15-093022. macOS creates these automatically during system updates and app installs as restore points, and normally thins them out on its own. On Tahoe, this automatic cleanup has been unreliable, letting snapshots accumulate for weeks.

To force macOS to thin them down to a target size, run:

sudo tmutil thinlocalsnapshots / 999999999999 4

This tells macOS to try freeing up roughly 999GB worth of snapshot space, using urgency level 4 (the most aggressive). It only deletes what is genuinely reclaimable, so do not worry about it removing something you need. On a system with 300GB+ tied up in old snapshots, this single command returns most of it within a minute or two.

To remove every local snapshot outright instead of thinning gradually, list them again and delete individually:

sudo tmutil deletelocalsnapshots 2026-08-15-093022

Repeat for each date shown in your listlocalsnapshots output. None of this touches actual Time Machine backups stored on an external drive or network volume. Local snapshots are a completely separate, temporary layer.

Is a Broken Spotlight Index Causing the Bloat?

A corrupted or oversized Spotlight index in .Spotlight-V100 is the second common cause, and rebuilding it with mdutil -E / clears the bloat, though your Mac will run slower during reindexing.

Some users on Tahoe report the Spotlight index itself growing to tens of gigabytes larger than normal, particularly after upgrading from Sonoma or Sequoia rather than installing Tahoe fresh. To rebuild it:

sudo mdutil -E /

This erases and rebuilds the Spotlight index from scratch. Expect the following while it works:

  • Spotlight search (Command-Space) returns incomplete or no results for anywhere from 20 minutes to a few hours, depending on how much data is on your drive
  • Your fans might spin up and the Mac feels slower during reindexing, since mds and mdworker processes scan every file
  • System Data usage temporarily drops once the old bloated index is deleted, then rises again as the new index rebuilds to a normal size

Check progress anytime with:

mdutil -s /

It will report "Indexing enabled" while working and eventually settle once done. Give it time before running it again; interrupting a rebuild partway through leaves the index in a worse state than before.

Should I Restart Before Trying Anything More Drastic?

Yes, restart after running the snapshot thinning and Spotlight rebuild commands, since Tahoe's Storage Settings panel frequently does not refresh its cached number until the next boot.

A surprising share of "my System Data is still huge" reports on Apple's forums resolve after a simple restart, not because the restart itself frees space, but because it forces the Storage Settings panel to recalculate and display the corrected figure. Do this before concluding the fixes above did not work.

When Should I Use Erase All Content and Settings?

Treat Erase All Content and Settings as a last resort, only after df -H /, snapshot thinning, Spotlight rebuild, and a restart all fail to bring System Data back to a reasonable size.

If your Mac is still showing hundreds of gigabytes of unexplained System Data after every step above, back up your files first (a real Time Machine backup, not local snapshots), then go to Apple menu > System Settings > General > Transfer or Reset > Erase All Content and Settings. This wipes third-party app data, cached files, and any lingering corruption surviving normal troubleshooting, then walks you through Setup Assistant like a new Mac. It takes 10 to 15 minutes on Apple Silicon Macs, far faster than a full clean install from a bootable installer.

Before reaching for this, confirm you are on the current point release. Apple has shipped incremental storage-calculation fixes across 26.1, 26.2, and 26.3, so check Apple menu > System Settings > General > Software Update and install anything pending before wiping your Mac.

Getting Your Storage Back to Normal

Work through these in order and stop as soon as your number looks reasonable:

  • Run df -H / to confirm whether you have a real space problem or a display bug
  • Run tmutil listlocalsnapshots / and thin or delete what you find
  • Rebuild the Spotlight index with sudo mdutil -E / and give it time to finish
  • Restart your Mac so Storage Settings recalculates
  • Install any pending Tahoe point update before considering Erase All Content and Settings

Most Macs affected by this resolve at the snapshot-thinning step. The Spotlight rebuild and restart cover the rest. Reserve the full reset for the rare case where none of it moves the number.

Related reading:

Frequently Asked Questions

Will deleting Time Machine local snapshots delete my backups?

No. Local snapshots are temporary copies stored on your internal drive, separate from actual Time Machine backups on an external drive or network volume. Thinning or deleting local snapshots frees drive space and does not touch your real backup history.

Is the huge System Data number even real?

Sometimes not. Apple has acknowledged a display bug in macOS Tahoe's Storage Settings panel where the reported number sits higher than what is on disk. Run the Terminal command in this guide to check your real free space before deleting anything.