1. 程式人生 > >雙系統Ubuntu無法訪問Win10磁盤分區解決方法

雙系統Ubuntu無法訪問Win10磁盤分區解決方法

linux 磁盤訪問 雙系統

今天在ubuntu下進Windows的分區下拷個文件,當打開時出錯了,而且是全部的NTFS盤都出錯,其中一個分區的錯誤顯示如下:

Error mounting /dev/sda3 at 
/media/struggle6688/164AFCB44AFC91AB: Command-line `mount -t "ntfs" -o 
"uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" 
"/dev/sda2" "/media/struggle6688/164AFCB44AFC91AB"‘ exited
 with non-zero exit status 14: Windows is hibernated, refused to mount.Failed to mount ‘/dev/sda2‘: Operation not permittedThe NTFS partition is in an unsafe state. Please resume and shutdownWindows fully (no hibernation or fast restarting), or mount the volume
read-only with the ‘ro‘ mount option.

出錯原因可能是因為Win10的狀態是高級休眠,筆記本左下角的休眠燈一直亮著,由於某種原因導致關機不徹底,筆記本一直處於高級休眠狀態,所以Ubuntu無法訪問Win10的磁盤。

解決辦法:

先嘗試進入Win10,然後點重啟(註意是重啟,而不是先關機再點開機鍵,如果點關機,Win10仍舊是高級休眠),啟動的時候選擇Ubuntu系統,進入系統後查看問題是否解決。

如果還沒有解決,就可以使用以下方法:

1. sudo apt-get install ntfs-3g        先安裝ntfsfix

然後對出錯的分區分別執行以下命令:

2. sudo ntfsfix /dev/sda2  
   sudo ntfsfix /dev/sda3


雙系統Ubuntu無法訪問Win10磁盤分區解決方法