我在安装硬盘时遇到问题。
我的 SSD 上运行着 Kubuntu 18.04。此外,我的硬盘上还有 Win10。现在,我尝试安装其中一个硬盘分区(不是 Win10 系统的分区)。但它只能以只读方式安装,即使我在 fstab 中有“rw”参数:
UUID=BAC6A307C6A2C34D /media/hdd1 ntfs-3g defaults,windows-names,locale=en_US.utf8,rw 0 0
我也尝试过 fstab 的其他配置,但它仍然是只读的。这就是“mount -l”命令告诉我的有关驱动器的信息:
/dev/sda3 on /media/hdd1 type fuseblk (ro,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
有人能帮忙吗?
编辑1: Windows 下 'chkdsk' 命令的输出:
C:\Windows\system32>chkdsk E:
The type of the file system is NTFS.
WARNING! /F parameter not specified.
Running CHKDSK in read-only mode.
Stage 1: Examining basic file system structure ...
70144 file records processed.
File verification completed.
111 large file records processed.
0 bad file records processed.
Stage 2: Examining file name linkage ...
30 reparse records processed.
77888 index entries processed.
Index verification completed.
Errors found. CHKDSK cannot continue in read-only mode.
它说它以只读模式运行。
但实际上,我在 Windows 下可以读取和写入此磁盘上的文件。
解决了:
当我关闭 Windows 更新并将其关闭时,问题就解决了。请查看 oldfred 评论中的链接。
答案1
看来 Windows 默认使用休眠模式。为了关闭它,我使用了遵循程序。另外,为了以防万一,我关闭了 Windows 的更新(它们可以重新打开休眠模式)。
感谢 oldfred 提供的链接。