macOSHigh

macOS File System Errors: Causes and Fixes

Article explains why macOS file system errors (APFS/HFS+) occur and provides proven fixes using Disk Utility, Terminal, and Time Machine.

Updated at February 16, 2026
15-30 minutes
Medium
FixPedia Team
Применимо к:macOS 10.13 High Sierra and newer (APFS)macOS 12 MontereymacOS 13 VenturamacOS 14 Sonoma

What a macOS File System Error Means

A file system error in macOS indicates corruption of the disk structure, which uses APFS (from macOS 10.13) or HFS+ (in older versions). Symptoms include:

  • Inability to boot the system or booting into Recovery Mode.
  • Messages in Disk Utility: "Could not verify/repair disk", "Error while verifying or repairing".
  • Failures when opening files, sudden freezes, appearance of "corrupted" files.
  • Error code -69832 (often related to APFS corruption).

The error usually occurs when disk metadata (file allocation table, journals) becomes inconsistent due to an improper shutdown, software crash, or hardware issues.

Causes

  1. Sudden power loss — the primary cause. Disconnecting power during data writing leaves the file system in an inconsistent state.
  2. Software failures — bugs in file system drivers, application conflicts, especially from apps that work directly with the disk (virtual machines, cloning utilities).
  3. Hardware problems — degrading SSD/HDD, faulty disk controller, problematic cables (with external drives).
  4. Incorrect shutdown — forced shutdown via power button, hung processes blocking writes.
  5. Errors during macOS updates — interrupting an update installation can damage system partitions.

Method 1: Using Disk Utility (First Aid)

First Aid is a built-in macOS tool for automatic file system checking and repair. This is the first and simplest step.

  1. Open Finder → Applications → Utilities → Disk Utility.
  2. In the left column, select the main volume (e.g., Macintosh HD), not just the physical disk (e.g., Apple SSD AP...). For APFS, you need to select the volume inside the container.
  3. Click the First Aid button in the top toolbar and confirm to run.
  4. Wait for completion. If First Aid reports success — restart your Mac. If not — proceed to the next methods.

⚠️ Important: First Aid may fail if the disk is in use by the system. In this case, run it from Recovery Mode (see Method 2).

Method 2: Checking via Terminal in Recovery Mode

When Disk Utility cannot fix the error due to locked system files, use the console utility fsck (for HFS+) or diskutil (for APFS) in Recovery Mode.

  1. Restart into Recovery Mode: shut down your Mac, turn it on, and immediately hold Command (⌘) + R until the Apple logo appears.
  2. In the Recovery menu, select Utilities → Terminal.
  3. Identify the disk identifier:
    diskutil list
    
    Find the main volume (e.g., disk1s1 for APFS or disk0s2 for HFS+). Write down the identifier.
  4. For APFS (macOS 10.13+):
    diskutil verifyVolume /dev/disk1s1
    
    If the check finds errors:
    diskutil repairVolume /dev/disk1s1
    
  5. For HFS+ (older versions):
    fsck_hfs -fy /dev/disk0s2
    
    Repeat the command until you see the message ** The volume appears to be OK.
  6. After successful repair, type reboot to restart.

💡 Tip: If the diskutil repairVolume command fails with Unable to repair volume, the APFS container itself may be damaged. Try diskutil repairContainer /dev/disk1.

Method 3: Restoring from Time Machine

If the file system error is caused by corrupted system or user files, and First Aid and fsck don't help, restore the system from a Time Machine backup.

  1. Ensure you have a current backup on an external drive.
  2. Restart into Recovery Mode (Command+R).
  3. Select Restore from Time Machine Backup.
  4. Choose a backup created before the error occurred.
  5. Follow the instructions to fully restore the disk.

⚠️ Important: Restoring will replace the current partition with the state from the backup. All files created after the backup date will be lost.

Method 4: Hardware Check and Diagnostics

If file system errors recur after repair, there may be a hardware failure with the storage drive.

  1. Run Apple Diagnostics:
    • Shut down your Mac.
    • Turn it on and immediately hold the D key.
    • Follow the on-screen instructions. The test checks the SSD/HDD, memory, and other components.
    • Note any error codes (e.g., PPD001 indicates an SSD issue).
  2. Check SMART status (for HDD/SSD) using third-party utilities like smartmontools:
    sudo smartctl -a /dev/disk0
    
    Look for SMART overall-health self-assessment test result: FAILED or a high Reallocated_Sector_Ct value.
  3. If diagnostics reveal drive problems, immediately create a backup and replace the drive through an authorized Apple service center.

Prevention

To minimize the risk of file system errors:

  • Always shut down your Mac properly: use the Apple menu → "Shut Down", do not cut power with the button.
  • Regularly update macOS: Apple releases fixes for file system drivers.
  • Use Time Machine: make backups at least once a week.
  • Perform preventive First Aid: once a month, run Disk Utility → First Aid on all disks.
  • Avoid interrupting operations: do not disconnect external drives during copying, do not install macOS during unstable power (use a UPS for Mac Pro).
  • Monitor disk space: leave at least 10-15% free space on the system partition for proper APFS operation.

F.A.Q.

Can you fix a file system error without data loss?
What's the difference between First Aid and the fsck command in Terminal?
How to prevent file system errors in the future?
What to do if the disk doesn't show in Disk Utility?

Hints

Launch Disk Utility
Run First Aid
If First Aid didn't help, reboot into Recovery Mode
Use Terminal for advanced checking
FixPedia

Free encyclopedia for fixing errors. Step-by-step guides for Windows, Linux, macOS and more.

© 2026 FixPedia. All materials are available for free.

Made with for the community