title: How to Fix macOS Tahoe 26.2 System Data Storage Bloat
description: Fix the "System Data" storage issue in macOS Tahoe 26.2 where hidden logs and caches consume hundreds of gigabytes of disk space.
category: System
How to Fix macOS Tahoe 26.2 System Data Storage Bloat
One of the most persistent issues in macOS Tahoe 26.2 is the sudden explosion of "System Data" storage. Users often find that 200GB+ of disk space is consumed by this mysterious category, often caused by runaway logging or temporary Apple Intelligence cache files.
Recommended Troubleshooting Tool
Before proceeding with manual fixes, we recommend using CleanMyMac X. The gold standard for identifying hidden System Data bloat and runaway log files.
- [Download CleanMyMac X Free Here](#)
- [Browse 240+ Premium Mac Utilities on Setapp](#)
Method 1: Clear the Unified Logging System
A bug in Tahoe can cause system logs to grow indefinitely.
- Open Terminal.
- Run the following command to see the size of your log database:
sudo du -sh /var/db/diagnostics
- If it's over 5GB, clear the logs using:
sudo log erase --all
Method 2: Delete Apple Intelligence Temporary Files
If you are using the new AI features, Tahoe stores large language model (LLM) cache files that aren't always cleaned up.
- Open Finder and press Command + Shift + G.
- Paste:
~/Library/Caches/com.apple.aiml/ - Delete the contents of this folder.
- Restart your Mac.
Method 3: Clear Local Time Machine Snapshots
If Time Machine is unable to complete a backup, it stores "local snapshots" that show up as System Data.
- Open Terminal.
- List snapshots:
tmutil listlocalsnapshots /
- Delete them all at once:
for d in $(tmutil listlocalsnapshots / | grep -oE '[0-9]{4}-[0-9]{2}-[0-9]{2}-[0-9]{6}'); do sudo tmutil deletelocalsnapshots $d; done
Method 4: Clear the Caches Folder
The standard system cache can sometimes bloat in 26.2.
- Press Command + Shift + G in Finder.
- Paste:
~/Library/Caches/ - Delete the folders for apps you no longer use or those that are unusually large.