System Data & Other storage

How to Clear System Data on Mac Safely (2026 Guide)

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/Caches and /Library/Caches
  • Log files~/Library/Logs, /Library/Logs, and the unified log store at /var/log
  • Temporary files/private/tmp and /private/var/folders
  • Purgeable content — iCloud-downloaded files macOS can evict when storage is low
  • Language resources bundled inside apps (*.lproj folders)
  • 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.

  1. Open Finder, press Shift ⌘ G, and type ~/Library/Caches.
  2. Review the folder list. Each subfolder is named after an app or bundle ID (e.g., com.apple.Safari, com.spotify.client).
  3. Delete the contents of folders belonging to apps you no longer use — or use a tool to do it automatically (more on that below).
  4. 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

  1. Check what is actually large. Open Storage settings or use a disk map tool to find the real culprits before deleting anything.
  2. Remove Time Machine local snapshots first — they are often 5–20 GB and zero risk to delete.
  3. Clear user caches from apps you actively use (~/Library/Caches) and delete the entire cache folders of apps you have uninstalled.
  4. Delete old log files in ~/Library/Logs if you are not debugging anything.
  5. 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 Support and ~/Library/Containers for 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.
  6. 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.

Reclaim your disk in one click

Crumb audits your whole Mac, tells you what's safe to delete, and frees the space in seconds — private, local, and Apple-notarized.

Download Crumb for macOS

Frequently asked questions

Is it safe to delete System Data on a Mac?
It depends on which files you remove. User caches (~/Library/Caches), old log files (~/Library/Logs), and Time Machine local snapshots are safe to delete — macOS rebuilds or no longer needs them. Core system folders like /System/Library, your Keychain, and Mail data are not safe to delete and can cause permanent data loss.
How do I clear system data on my MacBook without losing anything important?
Start by deleting Time Machine local snapshots with 'tmutil deletelocalsnapshots /', then clear ~/Library/Caches and ~/Library/Logs. Always check what a folder contains before deleting it — especially anything inside ~/Library/Application Support, which holds both safe leftovers and live app data.
Will clearing caches break any apps?
Clearing caches may cause apps to launch slightly slower on the first run after cleaning, since they need to rebuild their cache. It will not cause data loss or break app functionality. Your documents, settings, and preferences are stored separately.
What is the fastest way to delete leftover files from uninstalled Mac apps?
When you drag an app to the Trash, macOS leaves behind files in ~/Library/Application Support, ~/Library/Caches, ~/Library/Containers, and ~/Library/Preferences. You can hunt for these manually by searching for the app name in those folders, or use an uninstaller tool that finds them automatically and presents a checklist before deletion.
Why does my Mac still show a lot of System Data after cleaning?
Some System Data is purgeable — iCloud content that macOS holds locally but can evict on demand. This is reported in the storage breakdown but macOS manages it automatically. If the number stays high after a restart, check for Time Machine local snapshots (tmutil listlocalsnapshots /) and large folders in ~/Library/Application Support.