Stop using the drive immediately if your external drive turned read only and it holds files you can’t lose. Swap the cable, try a different USB port, and test the drive on another computer before touching any repair tool. If it still refuses to write access, don’t format it. Follow the operating system section below that matches your machine.
TL;DR:
- Most external drive read-only issues are caused by software factors like flags, permissions, or NTFS mounting, and can often be fixed with OS-specific commands.
- Hardware problems such as physical write-protect switches, controller failures, or damaged drives typically require professional diagnosis and cannot be resolved by software fixes alone.
- If a drive works on a secondary computer but remains read-only on your main machine, the root cause likely resides in the operating system, drivers, or settings rather than the drive itself.
- In case of clicking, grinding, or repeated disconnections, stopping DIY attempts and consulting a professional data recovery service is essential to prevent further damage.
- Imaging or cloning the drive before attempting repairs is the safest approach when the drive shows signs of physical or logical failure.
Before opening any repair tool, run through this five-minute checklist. It rules out the causes that have nothing to do with corruption or hardware failure, and it protects your files while you figure out what’s actually wrong.
Pro Tip: If the drive mounts fine on a second computer but stays read only on your main machine, the problem almost certainly lives in that machine’s operating system, drivers, or settings, not the drive itself.
Windows usually causes external drive read only issues through one of three things: a leftover write-protect flag, NTFS metadata corruption, or an unlocked BitLocker volume. Start in Disk Management (right-click the Start menu and select it) so you can see the volume and confirm Windows isn’t quietly asking you to format it.
From there, open Command Prompt as an administrator and run DiskPart:
list disk and list volume to find the correct drive numberselect disk X or select volume X to target itattributes disk clear readonly or attributes volume clear readonly to strip the flagIf DiskPart returns “the operation is not supported on the current volume,” the write protection is enforced at the hardware or controller level, not by Windows software, according to Microsoft’s own DiskPart documentation. That’s your cue to move to the hardware checks below rather than keep fighting software commands.
If the volume is recognized but acting glitchy, run chkdsk /f X: (replace X with the drive letter) to repair NTFS file system errors without erasing anything.
Also check Device Manager for a yellow warning icon on the drive’s USB controller. A corrupted driver can mimic write protection convincingly. If you use BitLocker, unlock the volume properly with your recovery key, and consider suspending BitLocker before running repairs so the encryption layer doesn’t interfere. Advanced users sometimes find a WriteProtect registry key set under Storage Policies, but editing the registry carries real risk of breaking Windows if done wrong, so treat that as a last resort.
External drive read only mac issues almost always trace back to one fact: macOS mounts NTFS drives as read-only by default. This isn’t a bug. Apple never built native NTFS write support into macOS, so any drive formatted for Windows shows up viewable but not editable the moment you plug it in.
You have two legitimate paths forward, according to Apple’s own support documentation:
Before any reformat, run Disk Utility and choose First Aid on the affected volume. First Aid attempts non-destructive repairs to the file system, and it often clears up mysterious read-only behavior caused by minor corruption rather than by NTFS itself. If First Aid reports errors it can’t fix, don’t erase the drive on the spot. Image or copy the data first.
If the drive isn’t an NTFS issue at all, check permissions instead. Open Finder, select the drive, hit Command+I for Get Info, click the lock icon to authenticate, then set your account to Read & Write under Sharing & Permissions. Checking “Ignore ownership on this volume” often resolves stubborn permission conflicts left behind by a previous user or system.
One more wrinkle: if a drive was last connected to a Windows PC with Fast Startup enabled, Windows can leave the NTFS volume in an “unclean” state that macOS mounts read-only as a safety measure. Reconnect it to the Windows machine, run CHKDSK there, and eject it properly before bringing it back to your Mac.
Pro Tip: Paid NTFS drivers work well, but they’re an ongoing software cost, not a one-time fix. If you only need to grab a few files off an NTFS drive occasionally, exporting to exFAT is usually the simpler long-term move. If you’re troubleshooting a specific brand, our LaCie external hard drive repair guide covers Mac-specific quirks in more detail.
Linux gives you more direct control over mount behavior than Windows or macOS, which makes troubleshooting external drive write protection more transparent, if a little more command-line heavy.
lsblk -f to identify the device and confirm the mount options actually show ro.sudo mount -o remount,rw /mount/point. This resolves cases where the drive mounted read-only for no deeper reason than a default setting.ntfs-3g instead of the default driver, since it supports read-write NTFS access that the kernel’s native driver doesn’t fully provide.sudo ntfsfix /dev/sdXN as a preliminary repair. This is especially useful for volumes left in an unclean state by Windows, a scenario documented extensively on Ask Ubuntu.fsck on it from a live USB session, since fsck should never run on a mounted volume.If none of that clears it, the limitation may sit in the kernel driver or a flaky USB controller rather than the file system. At that point, copying the data using a Windows machine and CHKDSK is often faster than continuing to fight it on Linux.
Not every read-only drive is a software issue. Before you touch another command line, rule out the physical causes, since they’re often the fastest fix and the easiest to overlook.
If the drive won’t power on at all rather than mounting read-only, that’s a separate issue covered in our guide on external drives that won’t turn on.
Stop all disk writes immediately if the files on that drive matter and you haven’t already. Every repair attempt, including CHKDSK and Disk Utility’s First Aid, writes to the disk in the process of fixing it, and a drive with underlying physical problems can degrade further with each pass.
The safer sequence is to create a full image of the drive first, using a tool like dd or a dedicated cloning utility, and then recover files from that image rather than the original disk, a workflow that data recovery guides consistently recommend for exactly this reason. Tools that throttle read retries, such as ddrescue, improve your odds of a clean image by avoiding long hangs on failing sectors.
| Symptom | Likely Cause | Recommended Action |
|---|---|---|
| Drive mounts but won’t write | File system flag, permissions, or NTFS default | OS-specific software fix |
| Drive works on one computer, not another | Driver or OS-level setting | Software fix on the problem machine |
| Drive disconnects and reconnects repeatedly | Failing controller or power issue | Stop use, image the drive |
| Clicking or grinding noise | Mechanical hardware failure | Stop immediately, contact a lab |
A qualified lab runs free diagnostics, images the drive in a controlled environment, and for physical damage, works in a clean room rather than on an open bench. Ask about turnaround time. Same-day appointments exist for drives that only need software-level repair, while physical recovery cases typically take longer.
Match what you’re seeing to the right branch, and you’ll skip steps that were never going to help.
Quick checks take minutes. CHKDSK, First Aid, and imaging can run anywhere from several minutes to a few hours depending on drive size and condition. Professional recovery timelines and cost vary by damage type, which is exactly why free diagnostics before committing to a repair matter.
| Step | Typical Time | Risk Level |
|---|---|---|
| Cable/port swap, test on another computer | 5 minutes | None |
| OS-specific software fix (DiskPart, First Aid, ntfsfix) | several minutes to a few hours | Low |
| Full drive imaging | 1 to several hours | Low if done correctly |
| Professional lab recovery | Varies by damage | Depends on drive condition |
Key takeaways: Most external drive read only problems are software, not hardware, and clear up with the right OS-specific command. The exceptions, hardware write-protect enforcement, controller failure, or physical drive damage, are the cases where continued DIY troubleshooting does more harm than good. When in doubt, image first and repair second.
The pattern worth noticing is how often people jump straight to formatting when a drive won’t write, when that’s usually the single worst move available. A drive stuck in NTFS read-only mode on a Mac isn’t broken. It’s behaving exactly as Apple designed it to. The fix is a five-minute reformat to exFAT, not a panic-driven wipe. The cases that actually deserve caution are the quiet ones: a drive that mounts, dismounts, and remounts on its own, or one that takes an extra few seconds to spin up each time. Those symptoms rarely show up in a “how to fix read only drive” search, but they’re often the earliest sign of a failing controller, long before clicking or grinding starts.
We’ve worked on Mac hardware and recovered data from failing drives since 2006, and the RAID and NVMe cases we see most often started as a drive someone assumed was “just being weird” for a few weeks. Free diagnostics exist precisely so you don’t have to guess whether a drive needs a ten-minute fix or a clean-room recovery.
— Kaya
If your external drive is stuck read only and the software fixes above haven’t worked, or if you’re hearing clicking, grinding, or seeing repeated disconnects, don’t keep experimenting on the original disk. A local Mac repair and data recovery service offers free diagnostics and works on a no recovery, no charge basis, so you pay nothing if files cannot be retrieved. The service has a lab in the West LA area and serves surrounding communities with same-day appointments for drives that need urgent attention.
Services include recovery from APFS and NVMe drives, RAID arrays, and logic board component repair for Mac hardware issues that go beyond a single external drive. Visit our hard drive data recovery page to see how we approach imaging and recovery, or call 310-866-0828 to book a same-day diagnostic before further use makes the problem worse.
On Windows, open an elevated Command Prompt, run DiskPart, select the drive, and run attributes disk clear readonly. On Mac, NTFS drives need reformatting to exFAT or APFS, while permission-based read-only issues clear up through Get Info’s Sharing & Permissions panel.
Start with the quick checklist: different cable, different port, test on another computer. If the drive still won’t write, move to the OS-specific fix, DiskPart on Windows, Disk Utility First Aid or reformatting on Mac, or mount -o remount,rw on Linux.
The most common cause is macOS mounting an NTFS-formatted drive as read-only by default, a deliberate Apple design choice rather than an error. Other causes include a write-protect switch, file system corruption, or a leftover BitLocker lock on Windows.
Identify whether the cause is software (a flag, permission, or file system default) or hardware (a physical switch or failing controller), since each needs a different fix. Software causes usually clear with the OS-specific commands above; hardware causes require checking switches, cables, and power before any software attempt.
Stop immediately if you hear clicking or grinding, see the drive repeatedly disconnect and reconnect, or if the data is too important to risk further DIY attempts. A lab offering free diagnostics and a no recovery, no charge policy lets you assess the damage without committing to a repair blind.
Follow a data-first sequence to cool a Mac safely after thermal shutdown, stop disk writes…
Restore MacBook speakers fast. Run volume and output checks, restart CoreAudio, follow Intel vs M…
Learn safe, model aware iMac power supply repair: LED 1 checks, a 10 second capacitor…
SD card unreadable? Stop using it and image the card first to preserve files. Run…
Protect files and fix the Mac prohibitory symbol. Follow Recovery and Disk Utility steps, and…
Stop disk writes and locate your password, Apple ID, or 24-character recovery key to unlock…