If you own the most popular MacBook Air configuration — the 256GB model — you have probably felt the gut-punch of a near-full SSD with no obvious culprit. The 256GB MacBook Air is not enough storage for the way most people actually use a computer in 2026: large app bundles, multi-gigabyte iOS simulators, photos synced from iCloud, video calls recorded to desktop, Homebrew packages, and a slow creep of caches you never knew existed. This guide gives you 12 concrete MacBook Air 256GB storage tips, ordered roughly from highest to lowest GB recovered, so you can triage fast and get breathing room back without nuking anything important.
Before You Start: Know What Is Actually Using Your Space
Open Apple menu > System Settings > General > Storage (macOS Ventura and later) or About This Mac > Storage on older versions. The bar chart gives you a rough category breakdown, but it is notoriously imprecise — "System Data" and "Other" can balloon without explaining what is inside them. For a more trustworthy picture, you have two practical options:
- Terminal: Run
du -sh ~/Library/* | sort -rh | head -20to see your largest Library subdirectories. - A treemap tool: Crumb's Visualize tab renders a whole-Mac treemap and surfaces the biggest individual files and folders in seconds — useful when you do not know where to look first on a cramped drive.
The 12 Tips, Ranked by GB Recovered
1. Clear System Caches and Logs (~2–8 GB)
macOS accumulates caches under /Library/Caches, ~/Library/Caches, diagnostic reports under ~/Library/Logs, and system-managed temp files. These rebuild automatically and are safe to remove.
- Quit all open apps.
- Open Finder, press Cmd+Shift+G, and go to
~/Library/Caches. - Delete the contents of individual app cache folders (not the folders themselves, or apps may misbehave on first launch).
- Repeat for
/Library/Caches— you will need your admin password.
Alternatively, Crumb's one-click Clean sweeps system caches, user caches, logs, and temp files in a single pass without requiring you to navigate each path by hand.
2. Reclaim Purgeable / System Data Space (~2–15 GB)
The gray "System Data" segment in Storage settings often contains purgeable space: old Time Machine local snapshots, iOS device backups, and files macOS has flagged as removable when disk pressure rises but has not yet cleared. On a 256GB drive this can be surprisingly large.
# List local Time Machine snapshots
tmutil listlocalsnapshots /
# Delete them all (safe — they are local copies, not your only backup)
tmutil deletelocalsnapshots /
Then empty Trash. macOS may take a few minutes to update the storage bar after you do this.
3. Offload Photos and Videos to iCloud (~5–40 GB)
Go to System Settings > Apple ID > iCloud > Photos and enable Optimize Mac Storage. This replaces full-resolution originals with thumbnails on your SSD while keeping the originals in iCloud. On a 256GB Air with a large photo library this is often the single biggest reclaim available — but it only works reliably with a stable internet connection and an active iCloud subscription.
4. Delete or Offload Large Video Files (~Varies Widely)
Video is the fastest way to fill a small SSD. Check:
~/Movies— screen recordings, Final Cut libraries, downloaded films~/Desktopand~/Downloads— forgotten Zoom or Teams recordings- iMovie libraries (they duplicate raw footage by default)
# Find files larger than 1 GB anywhere in your home folder
find ~ -size +1G -not -path "*/.*" 2>/dev/null
5. Clean Developer Caches and Build Artifacts (~2–30 GB for Developers)
This tip is for anyone who has Xcode, Node, or Python installed — the caches grow silently and are completely safe to clear.
| Tool | Cache Location / Command | Typical Size |
|---|---|---|
| Xcode derived data | ~/Library/Developer/Xcode/DerivedData |
2–20 GB |
| iOS Device Support | ~/Library/Developer/Xcode/iOS DeviceSupport |
1–10 GB |
| Homebrew cache | brew cleanup --prune=all |
0.5–5 GB |
| npm cache | npm cache clean --force |
0.5–3 GB |
| Gradle / Android Studio | ~/.gradle/caches |
1–8 GB |
| pip / uv cache | pip cache purge |
0.2–2 GB |
These paths are safe to delete in their entirety. Tools rebuild their caches on next use.
6. Remove App Leftovers From Uninstalled Apps (~0.5–5 GB)
Dragging an app to Trash does not remove the support files it scattered across ~/Library/Application Support, ~/Library/Preferences, ~/Library/Containers, and elsewhere. On a 256GB drive this accumulates quickly, especially if you trial a lot of apps.
The manual approach is to search for the app's bundle identifier in those folders. A dedicated uninstaller automates this: download Crumb and use its Uninstall tab, which matches apps to their leftover files and lets you review everything before removing.
7. Clear Application-Specific Caches (~1–10 GB)
Individual apps can accumulate enormous caches that the system-level cleanup does not always touch:
- Spotify:
~/Library/Caches/com.spotify.client— can reach 10 GB if offline sync is enabled - Slack:
~/Library/Application Support/Slack/Cache - Chrome/Edge/Brave:
~/Library/Application Support/Google/Chrome/Default/Cache - Zoom recordings:
~/Documents/Zoom— move to external storage if you want to keep them
Quitting the app first, then deleting the cache folder contents, is safe. The app will rebuild the cache.
8. Move Your Photos Library to External Storage (~10–80 GB)
If iCloud Optimize Storage is already on but your library is still large (perhaps because you have many videos), move the Photos Library file itself to an external SSD or large-capacity USB-C drive. Hold Option while launching Photos to point it to the external location.
9. Find and Delete Duplicate Files (~1–10 GB)
Downloads folders in particular accumulate multiple copies of the same installer, PDF, or image. The Terminal approach:
# Find duplicate files in Downloads by comparing checksums (slow on large folders)
fdupes -r ~/Downloads
A GUI duplicates finder is faster for whole-drive scans and lets you review before deleting.
10. Manage iOS and iPadOS Backups (~2–20 GB)
Every time you back up an iPhone or iPad to your Mac over USB, a full device image lands at:
~/Library/Application Support/MobileSync/Backup/
Open Finder, go to that path, and delete backups for devices you no longer own. For current devices, keep the most recent backup only. You can also manage these in Finder > select your iPhone in the sidebar > Manage Backups.
11. Compress or Archive Old Project Folders (~Varies)
Old Xcode projects, design files, or document archives that you rarely open can be compressed:
# Compress a folder to a .zip, then delete the original if the zip looks right
zip -r OldProject.zip OldProject/
rm -rf OldProject/
Or move them to an external drive or cloud storage (Dropbox, Google Drive, iCloud Drive) and remove the local copy.
12. Offload Rarely Used Apps (~0.5–5 GB)
macOS Ventura and later support offloading apps: System Settings > General > Storage, then click the Info button next to Applications. Offloading removes the app binary but keeps its documents and data; re-downloading takes a few seconds if you need it again. This is a good option for large creative apps (Logic Pro, Final Cut, DaVinci Resolve) you use occasionally.
What Is Safe vs. What Is Risky
Before you delete anything, it helps to understand the risk level:
| Category | Safe to Delete? | Notes |
|---|---|---|
App caches (~/Library/Caches) |
Yes | Rebuilt automatically; apps may be slow on first launch |
System logs (~/Library/Logs) |
Yes | Diagnostic only; no functionality lost |
| Local Time Machine snapshots | Yes | Keep your real backup external; snapshots are a convenience copy |
| Developer build artifacts | Yes | Always rebuilt by the IDE or build tool on next build |
| Old iOS device backups | Yes, with care | Delete only backups for devices you no longer own or have iCloud backup for |
~/Library/Application Support |
Only app subfolders | Contains app data (settings, databases) — deleting an app's subfolder resets it to factory |
/System, /usr, /private |
No | macOS system files — deleting these can break the OS |
App preferences (~/Library/Preferences) |
Only if resetting an app | Deleting a .plist resets that app's settings permanently |
Cleaning is permanent. Before clearing large folders, verify you are not deleting documents you need. If you are unsure about a specific folder, Crumb's "Is this safe to delete?" feature explains what any folder contains and what removing it will affect.
256GB MacBook Air Storage Management: A Realistic Outlook
Running 256GB MacBook Air storage management as an ongoing habit — not a one-off panic clean — is the real survival strategy. Set a monthly reminder to run through steps 1–3 above. Keep your Downloads folder emptied weekly. If you are a developer, add brew cleanup to a shell alias or run it monthly.
If you consistently run out of space after doing all of the above, the practical paths are: subscribe to a larger iCloud plan and lean harder on Optimize Storage, buy a USB-C external SSD (a 1 TB drive costs under $80 in 2026 and pairs well with a MacBook Air's USB-C port), or plan for a storage upgrade at your next Mac purchase.
The 256GB configuration is genuinely workable for most users — it just requires deliberate habits and knowing which categories of files grow quietly in the background. The tips above, applied in order, should recover 10–30 GB on a typical machine and significantly more on a developer machine that has been running for a year or two without a cleanup.