无法访问“希捷扩展硬盘”2 TB

use*_*506 4 external-hdd

我买了一块 Seagate Expansion 2TB 外置硬盘在跨平台操作系统中使用,但在使用之前我没有费心做任何设置或安装(如果有任何或必要的话),并将其插入我的笔记本电脑,其中有 Ubuntu 13.10它。当我从笔记本电脑传输到外部硬盘(希捷 2 TB)时,它工作正常,但突然它向我显示一条错误消息(下面的屏幕截图)。在启动器中出现图标,但无法执行任何任务。请建议我该怎么做?我已经将所有文件转移到其中,不想丢失它。还有如何进行分区以便它也可以用于其他操作系统?我也是新手,请详细解释。预先感谢。![无法发布图像,所以我列出了错误:

Error mounting /dev/sdb1 at /media/koyu/Seagate Expansion Drive: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdb1" "/media/koyu/Seagate Expansion Drive"' exited with non-zero exit status 13: $MFTMirr does not match $MFT (record 0).
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.
Run Code Online (Sandbox Code Playgroud)

rɑː*_*dʒɑ 5

您可以在 Ubuntu/Linux 中使用 ntfsfix 检查 NTFS。

打开你的终端并输入

sudo apt-get install ntfsprogs
Run Code Online (Sandbox Code Playgroud)

然后输入为

sudo ntfsfix /dev/sdbXX
Run Code Online (Sandbox Code Playgroud)

XX表示您的设备ID,您可以通过以下方式找到它df -h

信用在这里