If you have opened Apple menu → System Settings → General → Storage recently, you have probably seen a category called System Data consuming several gigabytes with no obvious way to shrink it. This guide explains exactly how to clear system data on Mac safely, drawing a clear line between files macOS rebuilds automatically and files you genuinely should leave alone.
What Is System Data on Mac, Actually?
Apple's Storage breakdown groups a wide variety of items under "System Data" because they do not fit neatly into Music, Photos, or Apps. The category typically includes:
- User and system caches — stored at
~/Library/Cachesand/Library/Caches - Log files —
~/Library/Logs,/Library/Logs, and the unified log store at/var/log - Temporary files —
/private/tmpand/private/var/folders - Purgeable content — iCloud-downloaded files macOS can evict when storage is low
- Language resources bundled inside apps (
*.lprojfolders) - System extensions, fonts, and preference files
- Leftover application support data —
~/Library/Application Support - Time Machine local snapshots — usually the single largest contributor
Not all of these are equally safe to remove. The sections below separate the safe from the risky.
Files You Can Safely Delete
User Caches (~/Library/Caches)
Applications write caches here to speed up repeated operations. macOS and apps rebuild them on demand, so deleting stale caches is low-risk. The worst outcome is a slightly slower first launch after cleaning.
- Open Finder, press Shift ⌘ G, and type
~/Library/Caches. - Review the folder list. Each subfolder is named after an app or bundle ID (e.g.,
com.apple.Safari,com.spotify.client). - Delete the contents of folders belonging to apps you no longer use — or use a tool to do it automatically (more on that below).
- Empty the Trash.
You can also do this from Terminal:
rm -rf ~/Library/Caches/*
Note: Close all apps before running this command. macOS will regenerate what it needs on next launch.
Log Files (~/Library/Logs)
Crash reports and diagnostic logs pile up silently. They are only useful if you are actively debugging a problem.
rm -rf ~/Library/Logs/*
System-level logs under /private/var/log are managed by newsyslog and rotate automatically — you do not need to touch those manually.
Temporary Files (/private/tmp)
macOS clears /private/tmp on reboot. If you have not rebooted in weeks, a manual clear is harmless:
sudo rm -rf /private/tmp/*
The ephemeral per-user folders inside /private/var/folders are also safe to clear, but macOS recreates them immediately, so the space savings are usually minimal.
Time Machine Local Snapshots
Local snapshots are often the biggest hidden contributor to System Data. macOS manages them automatically but you can force a purge:
tmutil deletelocalsnapshots /
If multiple snapshots exist, run tmutil listlocalsnapshots / first to see them, then delete by date:
tmutil deletelocalsnapshots 2026-05-01-030042
Deleting local snapshots does not affect your full Time Machine backup on an external drive.
Files You Should NOT Delete
| Path | What It Contains | Risk If Deleted |
|---|---|---|
/System/Library |
Core macOS frameworks and daemons | System failure; requires reinstall |
~/Library/Application Support/MobileSync |
iPhone/iPad backups made in Finder | Permanent loss of device backups |
~/Library/Keychains |
Passwords and certificates | Loss of saved passwords and 2FA tokens |
~/Library/Preferences |
App preference plist files | Loss of all app settings (permanent) |
/private/var/db |
Spotlight index, system databases | Broken search; full re-index required |
~/Library/Mail |
Mail app message store | Permanent loss of locally stored email |
A common mistake is clearing all of ~/Library/Application Support at once. Some subfolders there are true leftovers from uninstalled apps (safe to remove), while others hold live data for apps you still use, such as your Safari browser profile or your local music library database.
The Problem With "System Data" Advice Online
Many tutorials tell you to "just delete your caches and logs." That advice is correct as far as it goes, but it glosses over the fact that ~/Library/Application Support, language packs inside app bundles, and orphaned app data from uninstalled software also appear under System Data and require more judgment. Deleting the wrong folder there is permanent — macOS does not keep a second copy.
This is where having an explanation layer matters. Crumb includes an Is this safe to delete? AI that you can point at any folder on your Mac — it reads the path, identifies what normally lives there, and gives you a plain-English risk rating (Safe / Caution / Do Not Delete) before you act. That is especially useful for the grey-area folders like com.apple.Safari inside Application Support or the contents of /Library/Application Support/Adobe.
A Safe Step-by-Step Cleaning Workflow
- Check what is actually large. Open Storage settings or use a disk map tool to find the real culprits before deleting anything.
- Remove Time Machine local snapshots first — they are often 5–20 GB and zero risk to delete.
- Clear user caches from apps you actively use (
~/Library/Caches) and delete the entire cache folders of apps you have uninstalled. - Delete old log files in
~/Library/Logsif you are not debugging anything. - Hunt for leftover app data. When you drag an app to Trash, macOS does not remove its support files, preferences, or caches. Search
~/Library/Application Supportand~/Library/Containersfor folders matching the app name and remove those too — or use the Uninstall tab in Crumb, which finds these leftovers automatically and shows you a checklist before any deletion happens. - Restart your Mac. A fresh boot clears
/private/tmp, regenerates caches that macOS needs, and gives you an accurate post-clean storage reading.
How Much Space Can You Realistically Recover?
Results depend heavily on how long the Mac has been running without a cleanup and how many apps have been installed and removed over time. Common findings on a Mac used for 2–3 years without cleaning:
- Time Machine local snapshots: 5–25 GB (varies by storage available)
- User caches from browsers and Xcode: 2–10 GB
- Log files: 100 MB – 2 GB
- Leftover app support data from uninstalled apps: 500 MB – several GB
Purgeable space (iCloud evictable content) is reported inside System Data but macOS will reclaim it automatically when another app needs storage — you generally do not need to touch it manually.
Conclusion
Clearing system data on your Mac is safe when you target the right files: user caches, old logs, and Time Machine local snapshots are genuinely low-risk. The danger zone is ~/Library/Application Support, ~/Library/Preferences, and anything under /System — delete carelessly there and the damage is permanent. Take a targeted approach, verify what a folder does before you act, restart when done, and you can reclaim meaningful space without destabilizing macOS.