本文へスキップ

Free Up Space on Your Mac (Without Breaking Anything!)

Free Up Space on Your Mac (Without Breaking Anything!)

Here are some safe, effective ways to reclaim lots of space on your Mac without touching system files.


1. Use Apple’s Built-in Storage Management

  1.  → About This Mac → Storage → Manage…
    • Store in iCloud: Offload Desktop & Documents.
    • Optimize Storage: Remove watched iTunes movies/TV shows and mail attachments.
    • Empty Trash Automatically: Automatically delete items in Trash after 30 days.
    • Reduce Clutter: Review large files and delete what you don’t need.

2. Tackle Large & Old Files

  • Find big folders:
    du -sh ~/* 2>/dev/null | sort -h
    
  • Spot huge files:
    find ~ -type f -size +500M -exec ls -lh {} \;
    
    Delete or archive anything you don’t use (old disk images, ISO backups, installer packages).

3. Clean Up Caches & Logs

Warning: Only clear ~/Library caches, never /System or /Library.

rm -rf ~/Library/Caches/*
rm -rf ~/Library/Logs/*
  • Safari/Chrome caches: In each browser’s preferences → Advanced → “Clear Browsing Data.”

4. Remove Xcode & Developer Junk

If you’ve installed Xcode or command-line tools:

rm -rf ~/Library/Developer/CoreSimulator
rm -rf ~/Library/Developer/Xcode/DerivedData
xcodebuild -alltargets clean
sudo xcode-select --reset
  • Uninstall old simulators via Xcode → Preferences → Platforms.

5. Pry Loose Hidden Local Snapshots (Time Machine)

Local snapshots can eat dozens of GB:

tmutil listlocalsnapshots /
# then remove each snapshot:
sudo tmutil deletelocalsnapshots 2025-04-10-123456

Or disable them entirely (not recommended if you rely on snapshots):

sudo tmutil disablelocal

6. Prune Package Manager Caches

  • Homebrew:
    brew cleanup
    brew autoremove
    
  • npm/Yarn:
    npm cache clean --force
    yarn cache clean
    

7. Docker & Virtual Machines

  • Docker:
    docker system prune --all --volumes
    
  • VMs (Parallels, VirtualBox):
    Remove unused virtual disks or snapshots.

8. Archive or Offload

  • Photos & Videos: Move old libraries to an external drive or to iCloud Photos.
  • Mail Attachments: In Mail → Preferences → Accounts → “Download Attachments”—set to “Recent” or “None.”
  • Podcasts & iOS Backups: Delete old iOS device backups in Finder (or iTunes) and Podcast episodes you’ve listened to.

9. Third-Party Disk Scanners (Optional)

Tools like DaisyDisk or GrandPerspective let you visually map disk usage—great for spotting random space hogs.


⚠️ Pro Tips & Precautions

  • Back up first: Especially before mass-deleting.
  • Avoid /System and /Library: Never delete Apple system files.
  • Review twice: Make sure you won’t need a file before trashing it.

By combining Apple’s storage tools with targeted manual cleanups and cache prunes, you can free tens or even hundreds of gigabytes—while leaving your macOS installation untouched. Good luck!

Profile picture
Luiz Fernando - シニアソフトウェアエンジニア

読んでくれてありがとう!

この記事を楽しんで読んでいただければ幸いです。ご質問やご意見がございましたら、下記のソーシャル メディアからお気軽にご連絡ください。良い一日をお過ごしください。

Carousel imageCarousel imageCarousel imageCarousel imageCarousel image
次へ / 良い会話から始めましょう

大きなアイデア。
Little Luiz.

実現したいプロダクト、強くしたいチーム。一緒に何ができるか、話してみませんか。

道を選ぶ
01Freelance / Products

プロジェクトの相談

フリーランスでの協業、プロダクト開発、技術的な課題。

  • プロダクトの発見からリリースまで
  • ウェブ、モバイル、バックエンド開発
  • 明確なスコープと直接の協業
一緒につくりましょう
02Hiring / Teams

チームへの採用

エンジニアの採用と長期的な機会。

  • シニアフルスタックエンジニアリング
  • プロダクトの視点と技術的な責任
  • 分散チームでの経験
チームへの採用相談
03Résumé / Versions

履歴書を見る

汎用エンジニアリング、ヘルステック、フィンテックなど、用途別のバージョン。

  • 6つの特化バージョン
  • 印刷用PDFエクスポート
  • 役割ごとに更新
履歴書を見る
luizepauloxd@gmail.com

メールをご希望ですか?直接送るか、こちらで下書きを作成できます。

考えていることを教えてください。

© 2026 Luiz Fernando 意図と、少しの好奇心を込めて。ページの先頭へ