linux系统不能写入windows的ntfs磁盘

解决方法
(下面大多是都是参考
https://www.linuxidc.com/Linux/2014-05/101691.htm
1、首先安装ntfs-3g
如果还是不行,并且在挂在时提示
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.
可能由于Windows 未被正常关闭产生了错误,导致系统误以为存在临时缓存文件,禁止访问所致。
2、安装ntfsprogs,并且“修复”磁盘。
sudo apt-get install ntfsprogs
sudo ntfsfix 设备号
设备号通过sudo fdisk -l 来判断那个是windows的磁盘。
这样就是OK了。

猜你喜欢

转载自blog.csdn.net/wshk918/article/details/80376408