每当我安装外部HDD时,我都会得到以下错误。它以前是工作的,然后我选择了安全地移除驱动器。现在它给了我以下错误
Error mounting: mount exited with exit code 13: ntfs_mst_post_read_fixup_warn: magic: 0x43425355 size: 4096 usa_ofs: 8850 usa_count: 65535: Invalid argument
Actual VCN (0x800006009000000) of index buffer is different from expected VCN (0x0).
Failed to mount '/dev/sdb1': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.发布于 2012-09-22 06:50:25
我认为,在错误信息中已经给出了最简单的解决方案:
在第一种情况下,在Windows上运行chkdsk /f,然后重新启动两次。
如果有Windows,启动到它,选择分区,右键单击->属性-> Tools ->检查磁盘。
或者,您可以在打开具有管理权限的命令提示符后执行chkdsk /f Driveletter:。
发布于 2012-09-22 08:14:02
但是,如果您没有Windows,则可以尝试Linux程序:
sudo apt-get install ntfsprogs
sudo ntfsfix /dev/sdb1https://askubuntu.com/questions/191608
复制相似问题