Updated June 2026

What Is "Other" Storage on Mac and How to Clear It

That mysterious gray bar eating 20-50 GB of your Mac? Here's exactly what it contains and what you can safely delete.

What "Other" or "System Data" Actually Is

When you open System Settings > General > Storage, macOS categorizes your files into Apps, Photos, Music, Documents, and other recognizable groups. Everything it can't neatly categorize goes into "System Data" (previously called "Other" in older macOS versions).

This category is a catch-all for dozens of different file types, and it's usually the single largest category after Apps. On a typical Mac that hasn't been cleaned in a year, it can easily reach 20-50 GB.

What's hiding inside "Other" / System Data:

Why Apple Can't Tell You What It Is

Apple's storage analyzer runs at a high level and only recognizes files that belong to specific apps or media types. Anything stored in ~/Library (which is hidden by default) or in system directories gets lumped together. Apple deliberately hides ~/Library because modifying it incorrectly can break apps.

The result: you see a giant gray bar labeled "System Data" with no way to drill into it. This is the most common storage frustration for Mac users.

How to See What's Actually in "Other"

Apple won't show you, but Terminal will. Run this to see the 20 largest folders in your Library:

du -sh ~/Library/* 2>/dev/null | sort -rh | head -20

For system-level storage hogs:

sudo du -sh /private/var/* 2>/dev/null | sort -rh | head -15

And for Time Machine local snapshots (often the biggest culprit):

tmutil listlocalsnapshots /

What's Safe to Delete

1. Application Caches (3-15 GB)

Browser caches, Slack caches, Spotify caches, IDE caches. These are rebuilt when you reopen the app. Completely safe to delete.

du -sh ~/Library/Caches rm -rf ~/Library/Caches/*

2. Time Machine Local Snapshots (5-50 GB)

macOS keeps local backup snapshots even without a Time Machine drive connected. These are often the single biggest component of "Other" storage.

for snap in $(tmutil listlocalsnapshots / | cut -d'.' -f4); do sudo tmutil deletelocalsnapshots $snap; done

3. Old System Logs (500 MB - 3 GB)

sudo rm -rf /private/var/log/asl/*.asl rm -rf ~/Library/Logs/*

4. Old iOS Backups (5-50 GB each)

If you've ever backed up an iPhone or iPad to your Mac, those backups are still sitting there. Check in Finder > your device, or:

ls -lh ~/Library/Application\ Support/MobileSync/Backup/

Delete old backups you don't need through Finder > Manage Backups.

What's NOT Safe to Delete

Why Apple's "Manage" button barely helps

Apple's built-in storage management (System Settings > Storage > click any category) only offers basic options like emptying Trash, enabling iCloud optimization, and removing old media. It doesn't touch caches, logs, Time Machine snapshots, or app remnants. That's why "Other" stays large even after clicking every Manage option.

MacCare shows you exactly what "Other" contains

MacCare's visual TreeMap breaks down your entire disk so you can see exactly where your space went. Every item gets a risk classification, so you know what's safe to delete. No more guessing what's hiding in that gray bar.

⬇ Download Free Trial

$29/year or $69 lifetime · macOS 14+ · Apple-notarized

Related guides

How to free up space on Mac (10 methods)
Mac running slow? 8 fixes
Best Mac cleaner apps 2026
Clean Xcode cache (30-100 GB)