mount ntfs 分区
mount /dev/sdb1 /mnt/d
提示:
The 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 an
unsafe state. Please resume and shutdown Windows fully (no hibernation
or fast restarting.)
方案:命令都在管理员运行。
安装ntfsprogs:
apt install ntfsprogs
安装之后:
ntfsfix /dev/sdb1
修复之后先umount:
unmount /dev/sdb1
之后在mount:
mount /dev/sdb1 /mnt/d
参考:http://www.cnblogs.com/xiaoduc-org/p/5951500.html