在Ubuntu上安装我的HDD时,它突然显示了以下错误:
Unable to mount Seagate Backup Plus Drive-
"DBus error org.gtk.Private.RemoteVolumeMonitor.Failed:
An operation is already pending"
Unable to mount Seagate Backup Plus Drive:- Error mounting: mount exited with exit code 13:
ntfs_attr_pread_i: ntfs_pread failed: Input/output error Failed to calculate
free MFT records:
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. 我该怎么做?
发布于 2015-03-15 19:32:54
在类似这样的问题中,如果您能够访问Windows,最有用的工具之一是chkdsk。我认为它应该作为chkdsk /f [drive_letter]来解决任何与MFT相关的问题。NTFS驱动器经常做这样的事情。
否则,您可以在Ubuntu上使用ntfsfix。确保您已经安装了ntfs-3g。然后跑:
sudo ntfsfix /dev/your_drive但我不确定这在你的案子中会起作用。但在大多数情况下,它应该是有效的。祝好运。:)
发布于 2015-03-20 23:43:47
将HDD附加到Windows机器(或引导Windows)并运行:
chkdsk X: /f其中,X是Windows下的驱动器号。
https://askubuntu.com/questions/597141
复制相似问题