Fix Disk Utility First Aid Failed on APFS Volume

macOS Errors Intermediate 👁 24 views 📅 May 25, 2026

Disk Utility First Aid may fail on APFS volumes due to corruption or snapshot issues. This guide provides step-by-step fixes using Terminal commands and recovery mode.

Symptoms

When running Disk Utility First Aid on an APFS volume, the process may fail with messages like: "First Aid process has failed", "The volume /dev/diskXsX could not be verified completely", or "Snapshot is missing". The volume may become unmountable or behave erratically.

Root Causes

  • Corrupted APFS container or volume metadata due to improper shutdown, disk errors, or software bugs.
  • Stale or missing APFS snapshots (common after Time Machine or system updates).
  • Insufficient free space on the volume for repair operations.
  • Third-party disk utilities interfering with APFS structures.
  • Hardware issues like failing SSD or bad sectors.

Step-by-Step Fix

Prerequisites

  • Back up important data if possible (if volume is mountable).
  • Boot into macOS Recovery (Intel: Cmd+R at startup; Apple Silicon: hold power button).

Method 1: Repair via Terminal in Recovery Mode

  1. Open Terminal from Utilities menu.
  2. Identify the disk: diskutil list
  3. Note the APFS container disk (e.g., disk2) and volume (e.g., disk2s1).
  4. Run fsck_apfs in read-only mode first:
    /sbin/fsck_apfs -n /dev/diskXsX
  5. If errors found, run repair:
    /sbin/fsck_apfs -y /dev/diskXsX
    Use -l for live volumes.
  6. If repair fails due to snapshots, delete orphaned snapshots:
    diskutil apfs listSnapshots /Volumes/YourVolumeName
    Then delete:
    diskutil apfs deleteSnapshot /Volumes/YourVolumeName -name snapshot_name
  7. Re-run First Aid from Disk Utility.

Method 2: Force Repair Using -o flag

  1. In Terminal, unmount the volume: diskutil unmount force /dev/diskXsX
  2. Run:
    sudo fsck_apfs -y -o /dev/diskXsX
    The -o flag forces repair even if volume is dirty.

Alternative Fixes

  • Use Disk Utility from another macOS installation (e.g., external drive).
  • Clone the volume using dd or asr if mountable, then erase and restore.
  • Erase the APFS container and restore from Time Machine backup (last resort).
  • Run Apple Diagnostics (hold D at startup) to rule out hardware failure.

Prevention

  • Always shut down macOS properly; avoid force restarts.
  • Keep at least 10-15% free space on your startup disk.
  • Regularly run Disk Utility First Aid (monthly).
  • Disable Time Machine local snapshots if you rarely use them: sudo tmutil disablelocal
  • Update macOS to latest version to avoid APFS bugs.
  • Use diskutil verifyVolume periodically via Terminal.

Technical Notes

APFS uses copy-on-write and snapshots for data integrity. First Aid failures often stem from snapshot metadata corruption. The fsck_apfs tool is more robust than Disk Utility GUI. If all else fails, contact Apple Support or consider data recovery services.

CommandPurpose
diskutil listShow all disks and volumes
fsck_apfs -nCheck only, no repair
fsck_apfs -yRepair automatically
diskutil apfs listSnapshotsList snapshots on volume

Was this solution helpful?