Apple macOS Error Code diskmanagementd-69877: How to Fix It
Medium 15-45 minutes Medium Severity
Verified June 2026
- Error Code
- diskmanagementd-69877
- Brand
- Apple
- Product Type
- operating_system
- Severity
- Medium
- DIY Difficulty
- Medium
- Estimated Fix Time
- 15-45 minutes
Ad
Tools You'll Need
- Mac computer running macOS
- Terminal (built-in macOS utility)
- Disk Utility (built-in macOS utility)
- Activity Monitor (built-in macOS utility)
- Admin account credentials
- External backup drive (recommended for data safety)
How to Fix Error Code diskmanagementd-69877
-
Close All Open Applications
Do not force-eject or force-unmount the drive while apps are still running — this can cause file corruption or data loss. -
Find and Kill Processes Using the Volume via Activity Monitor
Only force-quit processes you recognize. Killing critical system processes can cause instability or require a restart. -
Disable Spotlight Indexing for the Volume
-
Use Terminal to Identify Which Process Is Using the Volume
Use 'kill -9' with caution. Only terminate processes related to the problematic volume, not core macOS system processes. -
Attempt Unmount via Terminal
Forcing an unmount while data is being written can result in data corruption. Only use the force flag if you have verified no processes are actively writing to the disk. -
Run First Aid in Disk Utility
Back up any important data before running First Aid if you suspect disk errors or signs of drive failure such as slow performance or unusual sounds. -
Restart Your Mac and Retry
-
Boot into macOS Recovery and Use Disk Utility from There
Erasing a volume in Recovery mode will permanently delete all data on that volume. Ensure you have a complete backup before proceeding.
Ad
When to Call a Professional
Contact Apple Support or visit an Apple Authorized Service Provider if: the error persists after all steps including Recovery mode, Disk Utility First Aid reports errors it cannot repair, the APFS volume belongs to your main startup disk and is experiencing repeated corruption, your Mac shows signs of physical drive failure (clicking sounds, extremely slow speeds, or frequent kernel panics), or if data recovery from a failing drive is needed. A certified Apple technician can run deeper hardware diagnostics and, if necessary, replace the internal storage device.Frequently Asked Questions
What does diskmanagementd-69877 mean on a Mac?
Error diskmanagementd-69877 is a macOS error indicating that the system's disk management daemon (diskmanagementd) was unable to unmount an APFS volume. This typically happens because one or more applications or background system processes are still reading from or writing to the volume, preventing macOS from safely detaching it.
Is error diskmanagementd-69877 dangerous to my data?
The error itself is not dangerous — it's actually a protective mechanism that stops an unmount from happening while data might be in use. However, if you force the unmount or ignore repeated disk errors alongside this message, you risk file corruption. Always investigate and resolve the cause cleanly before proceeding with disk operations.
Why does Spotlight keep causing the diskmanagementd-69877 error?
Spotlight's indexing service (mds) constantly scans and reads files across all volumes, including external and secondary APFS volumes. Because it holds open file handles during indexing, it can block unmount operations. You can temporarily disable Spotlight indexing on a specific volume using the Terminal command 'sudo mdutil -i off /Volumes/YourVolumeName' and re-enable it later after your disk operation is complete.
Can Time Machine cause the diskmanagementd-69877 error?
Yes. Time Machine's backup daemon (backupd) actively reads files from all volumes during a backup cycle. If a backup is in progress or recently started, it will hold file locks that prevent unmounting. Open System Settings (or System Preferences on older macOS), go to General > Time Machine, and pause or stop backups before attempting to unmount the volume.
How do I force unmount an APFS volume from Terminal on Mac?
Open Terminal and type: diskutil unmount /Volumes/YourVolumeName to attempt a safe unmount. If that fails due to error 69877, you can try: diskutil unmountDisk force /Volumes/YourVolumeName — however, only use the force option when you are certain no data is actively being written to the volume, as forced unmounts can cause data corruption if writes are interrupted.