macOS Tahoe brings a refreshed Storage panel and a handful of new automated recommendations, but if your disk is still running low after following Apple's suggestions, you are not alone. This guide walks through every built-in option for optimize storage on macOS Tahoe, explains what each one actually does (and what it leaves behind), and shows you what to do when the built-in tools reach their limit.
Where to Find macOS Tahoe Storage Settings
Apple consolidated storage management into System Settings. The quickest path:
- Open Apple menu > System Settings.
- Click General in the sidebar, then Storage.
- Wait for the bar graph to populate — it may take 10–30 seconds the first time.
The bar shows categories: Applications, Documents, iCloud Drive, System Data, and Other. Hover any segment to see its size. The Recommendations section below the bar is where Tahoe's built-in optimize storage feature lives.
What Tahoe's Built-in Optimize Storage Actually Does
Apple surfaces four recommendations. Understanding what each one really does helps you decide whether to enable it.
Store in iCloud
Moves Desktop and Documents to iCloud Drive and offloads originals when storage pressure rises, keeping local stubs. Useful if you have an active iCloud plan; the files are not deleted — they download on demand. If you cancel iCloud, you must download everything first.
Optimize Storage (TV and Mail)
This is the "Tahoe optimize storage feature" Apple markets. It removes locally stored Apple TV movies and shows you have already watched, and removes Mail attachments from older messages, keeping only the message text locally. Attachments re-download when you open them. This is safe for most people, but plan for slower opening of old email threads on slow connections.
Empty Trash Automatically
Permanently deletes items that have been in the Trash for 30 days. Enable this only if you are comfortable with automatic permanent deletion — there is no undo once an item ages out.
Reduce Clutter
Opens a file browser sorted by size. It is a manual review tool, not automation. You pick what to delete. Good for finding forgotten disk images, old archives, and large downloads.
Step-by-Step: Running Through Tahoe's Recommendations
- Open System Settings > General > Storage.
- Under Recommendations, click Store in iCloud and choose which folders to include. Skip this step if you do not subscribe to iCloud+.
- Click the Optimize button next to "Optimize Storage" to enable TV and Mail offloading.
- Decide consciously about Empty Trash Automatically — do not enable it by reflex.
- Click Review Files under Reduce Clutter. Sort by Size. Move anything large and unnecessary to the Trash, then empty it manually.
- Restart your Mac. macOS often reclaims purgeable space (caches it can rebuild) at the next boot.
What Tahoe's Storage Settings Miss
After following all of the above, many users still see a swollen System Data category. That number can reach 20–40 GB on a machine used for a year or two, and the built-in tools do not touch it. Here is what hides there:
- User caches —
~/Library/Caches. App caches from browsers, Xcode derived data, and third-party apps accumulate here. Generally safe to delete; apps rebuild what they need. - System log files —
/var/logand~/Library/Logs. Diagnostic logs can grow large, especially after crashes. - Temporary files —
/private/tmpand/private/var/folders. Most are cleaned at logout, but some are not. - Purgeable space — Space macOS has marked as reclaimable but has not yet freed. The Finder and Storage panel may count this as "used."
- App leftover files — When you drag an app to Trash, its support files, preferences, and caches stay behind in
~/Library/Application Support,~/Library/Preferences, and~/Library/Containers.
Cleaning System Data with Terminal
If you are comfortable with the command line, you can manually clear user caches and logs. This is generally safe — apps recreate what they need — but cleaning is permanent, so confirm paths before running rm.
# Clear your user cache (apps will rebuild on next launch)
rm -rf ~/Library/Caches/*
# Clear user log files
rm -rf ~/Library/Logs/*
# Show the 20 largest items consuming space (useful for hunting bloat)
du -sh ~/Library/Caches/* 2>/dev/null | sort -rh | head -20
Do not run these as root or target system-level directories unless you know exactly what you are removing. Deleting the wrong file in /Library or /System can break apps or require a reinstall.
Comparison: Built-in Tools vs. a Dedicated Cleaner
| Task | macOS Tahoe built-in | Dedicated tool (e.g. Crumb) |
|---|---|---|
| Offload iCloud files | Yes | No (iCloud-only feature) |
| Optimize TV / Mail attachments | Yes | No |
| Clear user caches & logs | No | Yes, one-click |
| Reclaim purgeable space | Partial (at boot) | Yes, explicitly |
| Remove app leftover files after uninstall | No | Yes |
| Visualize what is taking up space | Basic category bar | Disk map + largest items list |
| Explain whether a folder is safe to delete | No | Yes (AI explanation) |
| Find and remove duplicates | No | Yes |
Going Further: Cleaning What Apple Leaves Behind
If System Data is still large after a manual cache clear, the most reliable next step is a tool that can see the whole picture. Crumb is a native macOS menu-bar app that handles exactly this gap: it clears caches, logs, temp files, and purgeable space in one click, shows you a visual disk map of what is eating space, and — crucially — removes leftover files when you uninstall an app (the preference files and containers that dragging to Trash never touches).
One feature worth calling out for cautious users: Crumb's "Is this safe to delete?" AI lets you point at any unfamiliar folder and get a plain-language explanation of what it is and what the risk of removing it would be. That is genuinely useful when you find a 4 GB folder in ~/Library/Application Support and have no idea which app put it there.
If you want to try it, you can download Crumb and run one free cleanup to see how much it recovers beyond what Tahoe's built-in tools found.
Managing Storage on macOS Tahoe: Summary
The built-in macOS Tahoe storage settings are a solid starting point — iCloud offloading, Mail optimization, and the manual file review cover a real portion of recoverable space. But System Data, app leftovers, and accumulated caches are outside their scope. A combination of Apple's tools, periodic manual cache clearing via Terminal, and a dedicated cleaner for the rest gives you the most complete approach to keeping your Mac's storage healthy over time.