博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Error mounting /dev/sda4 , Metadata kept in Windows cache, refused to mount的解决方法
阅读量:6971 次
发布时间:2019-06-27

本文共 1090 字,大约阅读时间需要 3 分钟。

今天尝试mount读取Windows盘上的数据时,遇到了这个错误:

root@pityhero:/# mount -o rw /dev/sda4 /mntThe disk contains an unclean file system (0, 0).Metadata kept in Windows cache, refused to mount.Falling back to read-only mount because the NTFS partition is in anunsafe state. Please resume and shutdown Windows fully (no hibernationor fast restarting.)

百度了一下,发现好像是因为Win10的快速启动导致的。

可以启动windows,选择重启,再启动linux。

当然,也可以治本:

  sudo ntfsfix /dev/sda#

root@pityhero:/# sudo ntfsfix /dev/sda4Mounting volume... The disk contains an unclean file system (0, 0).Metadata kept in Windows cache, refused to mount.FAILEDAttempting to correct errors... Processing $MFT and $MFTMirr...Reading $MFT... OKReading $MFTMirr... OKComparing $MFTMirr to $MFT... OKProcessing of $MFT and $MFTMirr completed successfully.Setting required flags on partition... OKGoing to empty the journal ($LogFile)... OKChecking the alternate boot sector... OKNTFS volume version is 3.1.NTFS partition /dev/sda4 was processed successfully.

结束修复后,mount成功:

root@pityhero:/# mount -o rw /dev/sda4 /mnt

 

转载于:https://www.cnblogs.com/pityhero233/p/8145133.html

你可能感兴趣的文章
Day6-Dhcp
查看>>
BFS 两个重要性质
查看>>
Hillstone目的地址转换DNAT配置
查看>>
更完美点的登录
查看>>
HDU 1035 - Robot Motion
查看>>
Sicily 1698. Hungry Cow
查看>>
第一章 Java初步
查看>>
洛谷P2462 [SDOI2007]游戏(哈希+最长路)
查看>>
HDU 1428 漫步校园
查看>>
dispatch_source_create创建定时器和UIWindow创建类似处
查看>>
Java语言基础(九)
查看>>
python基础一 day5 集合
查看>>
Tomcat指定特定JDK版本
查看>>
mybatis 自动生成代码
查看>>
unittest===unittest 的几种执行方式
查看>>
Xcode使用小结1
查看>>
bzoj2763
查看>>
《转》struts2动态方法配置 Action,使一个Action可处理多请求
查看>>
[Shoi2007]Vote 善意的投票
查看>>
eval()函数用法详解
查看>>