今天在ubuntu下进Windows的分区下拷个文件,当打开时出错了,而且是全部的NTFS盘都出错,其中一个分区的错误显示如下:
Error mounting /dev/sda3 at /media/struggle6688/164AFCB44AFC91AB: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda2" "/media/struggle6688/164AFCB44AFC91AB"‘ exited with non-zero exit status 14: Windows is hibernated, refused to mount.Failed to mount ‘/dev/sda2‘: Operation not permittedThe NTFS partition is in an unsafe state. Please resume and shutdownWindows fully (no hibernation or fast restarting), or mount the volume read-only with the ‘ro‘ mount option.
出错原因可能是因为Win10的状态是高级休眠,笔记本左下角的休眠灯一直亮着,由于某种原因导致关机不彻底,笔记本一直处于高级休眠状态,所以Ubuntu无法访问Win10的磁盘。
解决办法:
先尝试进入Win10,然后点重启(注意是重启,而不是先关机再点开机键,如果点关机,Win10仍旧是高级休眠),启动的时候选择Ubuntu系统,进入系统后查看问题是否解决。
如果还没有解决,就可以使用以下方法:
1. sudo apt-get install ntfs-3g 先安装ntfsfix
然后对出错的分区分别执行以下命令:
2. sudo ntfsfix /dev/sda2 sudo ntfsfix /dev/sda3
时间: 2024-10-10 17:20:22