Reclaim Your Mac Storage
- Β
You should also read:
How to Build an AI-Powered Knowledge Base for Your Organization ?
How to Build an AI-Powered Knowledge Base for Your Organization (Using RAG) Most organizations already have knowledge. it's just buried in PDFs, policies, and documents that no one wants to read. What if instead of searching through files, you could just ask a question and get an answer instantly? Thatβs…
Continue reading...
If you're a developer or data engineer on macOS, you know the "System Data" nightmare: a massive, mysterious 100GB+ bar that you can't click on or easily clean.
I just dropped my System Data from 136 GB down to 47 GB. Here is the step-by-step "investigation" I used to hunt down the bloat:
π΅οΈ Step 1: Identify the "Big Fish" Don't guess. Use the Terminal to find exactly where the GBs are hiding: du -sh ~/Library/* | sort -rh | head -n 10 (This showed me my Library was the main culprit, specifically Group Containers and Application Support.)
π³ Step 2: Tame the Docker Beast Docker creates a massive virtual disk (Docker.raw) that can grow to 60GB+ and stay there forever.
The Fix: Use docker system prune -a --volumes or manually clear ~/Library/Containers/com.docker.docker.
π οΈ Step 3: Purge Developer "Derived Data" Xcode and other IDEs dump build files into hidden folders.
The Fix: Wipe ~/Library/Developer/Xcode/DerivedData. Itβs safeβthe system just rebuilds it when you actually run a project.
π Step 4: Trim the Browser "Brain" My Google Chrome folder was sitting at nearly 12 GB. Over time, site data and caches turn into a mountain of small files.
The Fix: A deep "Clear Browsing Data" (All Time) or a manual trim of ~/Library/Application Support/Google.
π Step 5: Force the "Truth" (Re-indexing) The macOS storage bar often "lies" because the index gets stuck. If you've deleted files but the bar hasn't moved, force a re-scan: sudo mdutil -E /
The Final Result? β 90 GB of SSD space reclaimed. β A much snappier Mac for my data engineering workflows.
hashtag#macOS hashtag#DataEngineering hashtag#DeveloperTools hashtag#TechTips hashtag#Productivity hashtag#Docker hashtag#StorageCleanup