Ubuntu+Window双系统无法挂载NTFS格式的磁盘解决方法
近期博主为了学习Linux换成了Ubuntu+Window10的双系统,但是有的时候会出现Win的NTFS无法被挂载的问题
具体情况如下
Error mounting /dev/sda9 at /media/moorson/B49CF7F69CF7B14A: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda9" "/media/moorson/B49CF7F69CF7B14A"' 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/sda9': 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.
发现有Window字样,我就觉得是Window的问题,原因就是因为Window的快速启动的锅,其实你选择了关机,但是window只是休眠了而已
他还会占用着硬盘,导致你换成了Ubuntu无法挂载硬盘
具体要怎么解决呢?
- ntfs磁盘修复
- 使用指令
$ sudo ntfsfix /dev/sda9
注意:上图的 /dev/sda9
要根据你的错误提示进行更改!
在终端内输入就可以修复挂载,接下来就可以在你的Ubuntu里读取window里的文件了A.A