Mount

無法在 Linux 中掛載 Windows 分區 - 休眠,拒絕掛載

  • May 7, 2021

我已經禁用了所有的安全啟動選項(安全啟動、舊版啟動、快速啟動,甚至是 Windows 中我必須進行電源設置並從休眠狀態更改為關機狀態的選項)。

如果有幫助,這是錯誤:

Error mounting /dev/sda4 at /media/%Username/Windows: Command-line
`mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000"
"/dev/sda4" "/media/%Username/Windows"' exited with non-zero exit
status 14: Windows is hibernated, refused to mount. Failed to mount
'/dev/sda4': 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.

我在網上看到這是一個 HP BIOS 問題,但其中沒有一篇文章真正展示瞭如何解決這個問題,所以我想問問自己。

以下是推薦的終端命令:

sudo mkdir /media/windows
sudo mount -t ntfs-3g -o remove_hiberfile /dev/sda4 /media/windows

它對windows分區並沒有什麼壞處,只是允許你讀寫磁碟,每次啟動到windows然後回到Linux時,你可能必須編寫第二個命令。

嘗試:

sudo ntfsfix /dev/partition_name

引用自:https://unix.stackexchange.com/questions/337152