# Linux系统分区访问windows分区提示挂载失败

版权声明:转载请注明出处! https://blog.csdn.net/zongf0504/article/details/86133717

笔者电脑是linux mint + win10 的双系统, linux mint系统会自动挂载widows 分区, 但偶尔也会发生分区挂载失败的问题, 导致windows分区不能访问. 当发生此问题之后, 只需要修复一下分区挂载即可.

1. 问题描述

从异常描述中可以发现, 分区 /dev/sda3 挂载异常, 所以要修复/dev/sda3 分区的挂载问题.

Error mounting /dev/sda3 at /media/zongf/workspace: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sda3" "/media/zongf/workspace"' 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

2. 解决方案

使用ntfsifx 命令分区, 如果系统不自带此命令, 自行安装即可.

$ sudo ntfsfix /dev/sda3

猜你喜欢

转载自blog.csdn.net/zongf0504/article/details/86133717