linux与windows双系统文件互相访问文件夹出错问题解决
程序员文章站
2022-03-14 08:24:30
Error mounting /dev/sda1 at /media/unixuse/287001D143DB2043: Command-line `mount -t "ntfs&q...
Error mounting /dev/sda1 at /media/unixuse/287001D143DB2043: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sda1" "/media/unixuse/287001D143DB2043"' 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/sda1': 不允许的操作
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、打开cmd命令,输入sudo fdisk -l
修改mount -t "ntfs" -o 为 mount -t "ntfs" -ro
或者sudo ntfsfix /dev/sda3
下一篇: c语言:有趣的转义字符用法