无法在 ubuntu 14.04 中挂载 2 个 Windows 合并的 ntfs 卷

无法在 ubuntu 14.04 中挂载 2 个 Windows 合并的 ntfs 卷

当我的全新 Ubuntu 尝试安装 Windows 7 中合并的两个硬盘时,我收到以下消息:

Error mounting /dev/sdc1 at /media/luttikon/Media 1: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdc1" "/media/luttikon/Media 1"' exited with non-zero exit status 12: Failed to read last sector (7814049791): Invalid argument
HINTS: Either the volume is a RAID/LDM but it wasn't setup yet,
   or it was not setup correctly (e.g. by not using mdadm --build ...),
   or a wrong device is tried to be mounted,
   or the partition table is corrupt (partition is smaller than NTFS),
   or the NTFS boot sector is corrupt (NTFS size is not valid).
Failed to mount '/dev/sdc1': Invalid argument
The device '/dev/sdc1' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

我是 Linux/Ubuntu 新手,但我知道如何使用终端。

答案1

尝试在终端中使用它

sudo apt-get install ntfsprogs
sudo ntfsfix /dev/sdXY

其中 XY 是驱动器的名称,例如 sdc1

相关内容