Ubuntu 15.10 不允许我打开 NTFS 驱动器

Ubuntu 15.10 不允许我打开 NTFS 驱动器

嘿,有人能帮我吗?如果这个问题之前有人问过,我很抱歉,但我正尝试从启动器打开一个 640GB 的卷,但出现此错误:

Error mounting /dev/sdb2 at /media/ubuntu/98C83D3AC83D1848: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sdb2" "/media/ubuntu/98C83D3AC83D1848"' exited with non-zero exit status 12: Failed to read last sector (1250256894): 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/sdb2': Invalid argument
The device '/dev/sdb2' 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?

我对此真的很陌生,今天是我第一次尝试将 Ubuntu 作为我电脑上的主操作系统(次要操作系统是 Windows 7),我想知道如何访问此驱动器(如果可能)。它不是装有 Windows 7 操作系统的驱动器。

答案1

编辑

访问此链接您将找到问题的解决方法,因为其他人已经遇到过类似的问题。您的驱动器有一个 SFS 动态分区方案,该方案是 Microsoft 专有的。查看链接中用户“Oldfred”的评论,它会派上用场!干杯!

原来的

根据显示的消息,我认为分区可能已损坏,但不要放弃。Ubuntu 是一款出色的 GNU/Linux 操作系统,很遗憾您遇到这种麻烦。

我遇到了类似的问题,你试过使用ntfs-3gntfsfix?或mountntfs-3g选项吗?NTFS 驱动器是否处于休眠状态?它是否遭遇断电?

man该页面部分ntfsfix内容如下:

ntfsfix is a utility that fixes some common NTFS problems.
ntfsfix is NOT a Linux version of chkdsk. It only repairs some
fundamental NTFS inconsistencies, resets the NTFS journal file and
schedules an NTFS consistency check for the first boot into Windows.

You may run ntfsfix on an NTFS volume if you think it was damaged by
Windows or some other way and it cannot be mounted.

尝试这个:

ntfsfix /path/to/ntfsdevice

对于你来说,情况是这样的:

ntfsfix /dev/sda2

/dev/sda2有问题的 NTFS 分区在哪里。ntfsfix有一些有用的选项,例如:

ntfsfix -b /dev/sda2

-b选项执行以下操作:Clear the list of bad sectors. This is useful after cloning an old disk with bad sectors to a new disk.

或者:

ntfsfix -d /dev/sda2

-d选项执行以下操作:

Clear the volume dirty flag if the volume can be fixed and mounted.
If the option is not present or the volume cannot be  fixed the dirty
volume flag is set to request a volume checking at next mount.

希望这能有所帮助。如有疑问,请随时咨询。干杯!

相关内容