解决双系统(win10和ubuntu)中ubuntu无法挂载win10硬盘的问题

解决双系统(win10和ubuntu16.04)中ubuntu无法挂载win10硬盘的问题

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 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.对出错的磁盘分区分别执行:
(可能需要先执行“sudo apt-get install ntfs-3g”,即安装 NTFS-3G 以支持ubuntu系统中的 NTFS 读写)

sudo ntfsfix /dev/sda3

/dev/sda3”为挂载错误的磁盘名。

2.如需修复其他磁盘,可在终端输入如下命令,查看其他分区的挂载情况

sudo fdisk -l 

按照相应的分区名称修复即可。

3.如果遇到如下错误:

Mounting volume... Windows is hibernated, refused to mount.
FAILED
Attempting to correct errors... 
Processing $MFT and $MFTMirr...
Reading $MFT... OK
Reading $MFTMirr... OK
Comparing $MFTMirr to $MFT... OK
Processing of $MFT and $MFTMirr completed successfully.
Setting required flags on partition... OK
Going to empty the journal ($LogFile)... OK
Windows is hibernated, refused to mount.
Remount failed: Operation not permitted

原因:win10处于高级休眠状态
解决办法:进入win10,并关闭快速启动功能,可参考 https://jingyan.baidu.com/article/48b558e30ca7977f38c09a95.html

你可能感兴趣的:(系统问题解决)