我无法从 Ubuntu 操作系统访问 NTFS 分区

我无法从 Ubuntu 操作系统访问 NTFS 分区

当我尝试访问该分区时出现此消息:

Error mounting /dev/sda3 at /media/ali/Ali: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sda3" "/media/ali/Ali"' exited with non-zero exit status 14: The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sda3': 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.

答案1

该消息表示您的 ntfs 分区未正确关闭。因此,如果要写入 ntfs 分区,则必须在 Windows 上启动它(分区),然后正确关闭 Windows(关机),然后使用选项 ro(只读)或 rw 重新挂载它在 Linux 上。

mount -o ro /dev/sda3 /whereyouwant

相关内容