Safe to Delete

macOS Local Time Machine Snapshots (MobileBackups)

Quick Answer: Local Time Machine Snapshots store offline backup points on Mac SSDs. Deleting local snapshots via tmutil is safe and recovers tens of gigabytes.

Bottom Line: It is 100% safe to delete Local Time Machine Snapshots. Purging local snapshots using Terminal will NOT delete your primary Time Machine backups on external hard drives or NAS devices.


What are Local Time Machine Snapshots?

Created automatically by macOS Time Machine, local snapshots are saved directly on your Mac’s internal SSD when your external backup disk is disconnected.

macOS creates hourly APFS snapshot points of modified files. While Apple claims local snapshots only use “free space” and self-purge when disk space is tight, they frequently fail to release space, causing macOS to display 50 GB to 150 GB+ of unexplained storage categorized under System Data.


Can You Delete Local Snapshots?

✅ Yes, it is completely safe to delete.

  • No backup risk: Your permanent backups on external backup drives remain 100% intact.
  • Instant SSD space recovery: Deleting local APFS snapshots immediately frees up tens of gigabytes on Mac SSDs.

How to Safely Purge Local Time Machine Snapshots

  1. Open Terminal on Mac (Cmd + Space > type Terminal).
  2. List all active local snapshots:
    tmutil listlocalsnapshots /
  3. Delete all local snapshots in one command:
    for date in $(tmutil listlocalsnapshots / | grep -oE '[0-9]{4}-[0-9]{2}-[0-9]{2}-[0-9]{6}'); do sudo tmutil deletelocalsnapshots $date; done

Discussion

Loading authentication...

Related in macos

macOS Background Download Session Cache (com.apple.nsurlsessiond)

nsurlsessiond caches incomplete background file downloads for system apps and iCloud daemon sync. Clearing the cache is safe.

Safe to Delete

macOS Font Server Cache (/var/db/ats)

Apple Type Services (ats) caches font rendering metrics. Resetting the font cache fixes corrupted font glyphs and system text glitches.

Safe to Delete

macOS System Font Cache Directory (com.apple.fontd)

macOS caches system and user font rendering structures in com.apple.fontd. Learn how to reset macOS font cache to fix garbled text.

Safe to Delete
Back to all files