我一直在研究诸如由于休眠而无法挂载Windows(NTFS)文件系统之类的问题,以及如何挂载休眠的NTFS分区?他们都说“我无法启动到Windows”。然后,在多加注意之后,remove_hiberfile
建议使用该选项。我会喜欢这种选择。我不在乎打开的程序或其中的数据。Windows分区位于/ dev / sda5,因此我运行了
sudo mount /dev/sda5 /mnt/win
以后有很多阅读...
sudo mount -t ntfs-3g -o remove_hiberfile /dev/sda5 /mnt/win
sudo mount -t ntfs-3g -o debug,remove_hiberfile /dev/sda5 /mnt/win
仍然没有运气。就像remove_hiberfile
选项未被识别,因为尝试使用该选项时不会出现错误,remove_hiberfile3ejeiofe
而是出现相同的消息。
这是所有上述命令的结果(添加调试未更改任何内容):
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sda5': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
我能够以只读方式挂载,但这并没有太大帮助。
fsck: fsck.ntfs: not found
sudo ntfsck /dev/sda5
给 Unsupported: replay_log() Volume is dirty. Unsupported: check_volume() Checking 381952 MFT records. Unsupported cases found.
fsck /dev/sda5
命令检查磁盘是否有错误。