Mac System Data Is Huge? Stop Deleting Caches Blindly
“System Data is taking 200GB — how do I actually get rid of it?”
System Data is not one deletable folder. It is a summary of caches, logs, snapshots and local backups. Handle it by category — the biggest offender is almost always Time Machine local snapshots.
中文版:用中文阅读这篇 →
Run `tmutil listlocalsnapshots /` to see whether snapshots are holding the space. This is the single most overlooked — and easiest to fix — cause.
What you are seeing
- The System Data block in Storage looks abnormally large
- Free space fluctuates and changes after a restart
- You delete files but available space does not increase
Common causes
- Time Machine local snapshots, especially without a connected backup drive
- Local cache of iCloud Photos
- App logs, crash reports and font caches
- Spotlight indexes and Mail attachment caches
- Media caches from Premiere, Resolve and Final Cut Pro
Full walkthrough
- 01
Check local snapshots first
This is the top reason System Data looks inflated. Snapshots are Time Machine backups stored locally. The normal cleanup merges them once you reconnect the backup drive, but if that never happens they just pile up.
tmutil listlocalsnapshots / - 02
Delete old snapshots as needed
After confirming the dates in the list, delete the older ones. Removing a snapshot does not touch your current files — it only gives up the ability to roll back to that point in time.
sudo tmutil deletelocalsnapshots 2026-09-01-120000⚠️ Heads upConfirm you have a working external backup before deleting snapshots, otherwise you lose your rollback options. - 03
Handle the iCloud Photos cache
With Optimize Mac Storage enabled, macOS keeps a portion of full-resolution originals locally. Check the actual size of your photo library, and after exporting a backup, consider rebuilding the library or letting it live fully in the cloud.
- 04
Clear app caches and logs
Caches and logs are safe to remove; the system rebuilds them. Do not delete the Application Support folder — that holds your actual app settings.
rm -rf ~/Library/Caches/* && rm -rf ~/Library/Logs/*⚠️ Heads upThis clears all caches for the current user. Some apps will be slower on first launch afterwards, which is normal. Make sure no downloads or renders are in progress. - 05
Check Mail and Messages attachments
Long-term use of the built-in Mail and Messages apps can accumulate tens of gigabytes of attachments. Mail settings let you limit how much is kept offline.
How to prevent it
- Connect an external backup drive at least once a month so local snapshots merge
- Review iCloud Photos local usage periodically if you use Optimize Mac Storage
- Store editing project caches on an external drive, not the system disk
Follow-up questions
Can I clear System Data in one click?
No. It is an aggregate of several sources and has to be handled by category. Any tool claiming one-click clearing is still deleting caches and snapshots behind the scenes.
Why does it grow back right after I delete it?
Usually an app is rebuilding its cache, or the system created a new batch of snapshots after the deletion. Restart and observe again.