错误安装后安装 Windows 磁盘

错误安装后安装 Windows 磁盘

我无法安装 Windows 磁盘。我是 Linux 新用户。

Error mounting /dev/sda1 at /media/dimitris/CE061FB2061F9B13:
Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda1" "/media/dimitris/CE061FB2061F9B13"' exited with non-zero exit status 14: Windows is hibernated, refused to mount.

Failed to mount /dev/sda1: 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

您想要在光盘上写入内容,还是仅进行备份?

错误信息告诉您——unsafe state您可以安装只读ro选项:

mount -t "ntfs" -o  "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177,ro" "/dev/sda1" "/media/dimitris/CE061FB2061F9B13"

您可以尝试删除休眠模式:

mount -t ntfs-3g -o remove_hiberfile /dev/sda1 "/media/dimitris/CE061FB2061F9B13"

相关内容