ntfs 挂载问题 + ntfsfix 问题

ntfs 挂载问题 + ntfsfix 问题

我安装了 ubuntu,现在我的 windows 无法启动,ubuntu 也一样!ubuntu 错误消息与!Windows 错误是“发生磁盘读取错误”
我无法安装 Windows,但 Windows 7 安装盘无法检测到我的硬盘,Windows XP 的磁盘显示“蓝屏”,活动启动盘无法显示我的分区。
我只能运行 ubuntu 实时磁盘,ubuntu 检测并显示硬盘分区。但我的一个驱动器无法在 ubuntu 中安装。当我尝试打开我的驱动器时,ubuntu 显示此消息:

Error mounting: mount exited with exit code 13: ntfs_mst_post_read_fixup: magic: 0x00000000  size: 4096  usa_ofs: 0  usa_count: 65535: Invalid argument
Actual VCN (0x0) of index buffer is different from expected VCN (0x1).
Failed to mount '/dev/sda3': 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.

我的硬盘不是 RAID。
我读了同样的问题并找到了解决方案!ntfsfix。但是...
当我运行 ntfsfx 时:

$ sudo ntfsfix /dev/sda3
Mounting volume... ntfs_mst_post_read_fixup_warn: magic: 0x00000000  size: 4096   usa_ofs: 0  usa_count: 65535: Invalid argument
Actual VCN (0x0) of index buffer is different from expected VCN (0x1).
FAILED
Attempting to correct errors... 
Processing $MFT and $MFTMirr...
Reading $MFT... OK
Reading $MFTMirr... OK
Comparing $MFTMirr to $MFT... OK
Processing of $MFT and $MFTMirr completed successfully.
Setting required flags on partition... OK
Going to empty the journal ($LogFile)... OK
ntfs_mst_post_read_fixup_warn: magic: 0x00000000  size: 4096   usa_ofs: 0  usa_count: 65535: Invalid argument
Actual VCN (0x0) of index buffer is different from expected VCN (0x1).
Remount failed: Input/output error

ps 这个分区对我来说很重要。

答案1

从 LiveCD 启动,像这样挂载你的根分区

mount /dev/sda2 /mnt

然后执行向此 NTFS 分区nano /mnt/etc/fstab添加noauto选项的操作。操作方式如下... ntfs defaults,noauto 0 0。按 Ctrl+X 保存,然后重新启动。

相关内容