Software⏱️ 3 min read📅 2026-06-11

How to Fix: Error mounting external hard drive

Error mounting external hard drive in Arch Linux due to NTFS issues.

Quick Answer: Try running chkdsk /f on Windows and then reboot twice before attempting to mount the drive again.

Error mounting an external hard drive via USB is a common issue that affects many users. This error occurs when the NTFS file system on the external hard drive becomes corrupted or inconsistent, preventing it from being mounted by the operating system.

This error can be frustrating as it prevents users from accessing their important files and data stored on the external hard drive. However, with the right troubleshooting steps, you can resolve this issue and regain access to your files.

⚠️ Common Causes

  • The primary reason for this error is that the NTFS file system on the external hard drive has become corrupted or inconsistent. This can happen due to various reasons such as power failures, physical damage, or software conflicts.
  • Alternatively, the issue might be caused by a SoftRAID/FakeRAID hardware configuration, which requires specific steps to resolve.

🛠️ Step-by-Step Verified Fixes

Using ntfsfix

  1. Step 1: Open a terminal and type `sudo ntfsfix /dev/sdb1` to run the ntfsfix command. This will attempt to fix the NTFS file system on the external hard drive.
  2. Step 2: If the command completes successfully, you should see a message indicating that the volume was processed successfully. However, if the command fails with an 'Input/output error' message, proceed to the next step.
  3. Step 3: In case ntfsfix fails, try repeating the command multiple times (e.g., `sudo ntfsfix /dev/sdb1` and then `sudo ntfsfix /dev/sdb1` again) to see if it resolves the issue.

Using chkdsk

  1. Step 1: If ntfsfix fails, you can try using the chkdsk command. Open a terminal and type `sudo chkdsk /dev/sdb1` to start the disk check process.
  2. Step 2: Follow the prompts to complete the disk check. This may take some time depending on the size of your external hard drive.

✨ Wrapping Up

If none of the above methods resolve the issue, you may need to seek further assistance from a professional or manufacturer support. However, by following these steps, you should be able to successfully mount your external hard drive and access your files.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions