First: see what's actually using the space
Don't start deleting blindly. Open > System Settings > General > Storage. The bar at the top breaks your disk into categories — Applications, Documents, Photos, macOS, and the vague System Data. Click the little ⓘ next to Documents and Applications to see your largest files and apps, sorted by size.
For a precise, no-nonsense view from Terminal, this lists the biggest folders in your home directory:
du -sh ~/* ~/Library/* 2>/dev/null | sort -rh | head -20What “System Data” really is (and how to shrink it)
“System Data” (called “Other” on older macOS) is the category everyone panics about. It's not one thing — it's everything macOS doesn't sort elsewhere: caches, logs, local Time Machine snapshots, app support files, fonts, plugins, and temporary files. On a healthy Mac it's often 10–40GB. When it balloons to 100GB+, one of the things below is the cause.
You can't (and shouldn't) delete “System Data” directly — there's no single folder. Instead you shrink it by clearing the specific culprits: snapshots, caches, and old backups. Do those and the number drops on its own.
1. Local Time Machine snapshots (the usual hidden hog)
Symptom: “System Data” is huge and you have Time Machine on. Why: even when your backup drive is unplugged, macOS keeps local snapshots on your internal disk. They're meant to be temporary, but can quietly hold tens of gigabytes.
Check for local snapshots:
tmutil listlocalsnapshots /Fix: macOS thins these automatically when space runs low, but you can force it. This thins local snapshots, keeping at least 4 most-recent, freeing the rest:
sudo tmutil thinlocalsnapshots / 999999999999 42. Trash, Downloads, and big forgotten files
The easy wins. The Trash still counts against your disk until emptied — right-click the Trash icon > Empty. The Downloads folder is where installers (.dmg), large attachments, and one-off files pile up; sort it by size and clear what you don't need. Then hunt large files anywhere with:
find ~ -type f -size +1G 2>/dev/null3. Caches and logs
Symptom: steady “System Data” growth over months. Why: apps and the system write caches and logs that aren't always cleaned up. Fix: most live in ~/Library/Caches. It's generally safe to clear app caches (apps rebuild them), but quit the apps first, and never delete the Library folder itself. See what's there:
du -sh ~/Library/Caches/* 2>/dev/null | sort -rh | head -154. App data: iOS backups, Xcode, GarageBand, Photos
A few apps are notorious space hogs. iPhone/iPad backups stored on your Mac can be many gigabytes (manage them in the Finder sidebar > your device > Manage Backups). Xcode hides huge caches in ~/Library/Developer/Xcode/DerivedData and old simulators. GarageBand and Logic bundle gigabytes of sound libraries you may never use. And the Photos library — especially with duplicates and videos — is often the single largest item on a personal Mac.
5. Offload to iCloud (without losing anything)
Fix: in > System Settings > General > Storage, turn on “Store in iCloud”. Files you rarely open are kept in the cloud and downloaded on demand, freeing local space while keeping everything available. Optimize Mac Storage for Photos does the same for your library. This is the safest way to reclaim space — nothing is deleted, just offloaded.
The fastest path, in order
- Open Storage settings and note the breakdown.
- Empty the Trash and clear Downloads.
- Thin local Time Machine snapshots.
- Delete large unused files, old iOS backups, and dev caches.
- Turn on Store in iCloud / Optimize Storage, then restart.
That sequence reclaims space on almost any Mac — and watch “System Data” shrink as you go.