1. 程式人生 > >linux系統不能寫入windows的ntfs磁碟

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了。