这个分区挂载出了什么问题?

这个分区挂载出了什么问题?
Error mounting /dev/sda2 at /run/media/Juno/Two: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda2" "/run/media/aunshi/Two"' exited with non-zero exit status 13: $MFTMirr does not match $MFT (record 0).
Failed to mount '/dev/sda2': Eingabe-/Ausgabefehler
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.

HDD 是 GPT 格式的大磁盘,有问题的分区是第二个分区。只需双击驱动器即可完成安装。磁盘在 Windows 下没有问题。有人可以告诉我吗?谢谢。

答案1

我刚刚解决了类似的问题。希望这能有所帮助。

  1. 在 Windows Server 2012 R2 上安装了一个新的 2TB SATA 磁盘,创建了一个 GPT 分区并将其快速格式化为 NTFS,创建了测试文件夹 foo,关机,删除磁盘。
  2. 将磁盘连接到 ubuntu 12.04 LTS 服务器。使用以下命令创建挂载点 /data2mkdir

  3. lshw -C disk(显示我的第三个磁盘 *-disk2 为 /dev/sdc )

  4. fdisk -l(警告不喜欢 GPT,并建议使用 gparted)

  5. ls /dev/sdc*(显示分区 sdc、sd1 和 sd2!!!)

我在 Windows Server 中仅创建了 1 个分区。分区号差了 1。

我试过,

mount -t ntfs /dev/sdc /data2
mount -t ntfs /dev/sdc1 /data2

并且总是出现错误。

mount -t ntfs /dev/sdc2 /data2

效果很好。foo 在 /data2 中

Linux ubuntu101 3.2.0-54-generic #82-Ubuntu SMP Tue Sep 10 20:08:42 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

相关内容