欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-05-11 23:50:21
...

笔者电脑是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