無法掛載分區!
我目前在我的系統中安裝了Debian****和 Windows 8.1。我在 debian 中安裝其他分區時遇到問題。嘗試打開它時會彈出以下錯誤:
Error mounting /dev/sda5 at /media/amit/New Volume: Command-line
mount -t “ntfs” -o “uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177” “/dev/sda5” “/media/amit/New Volume”’ exited with non-zero exit status 14: The disk contains an unclean file system (0, 0). Metadata kept in Windows cache, refused to mount. Failed to mount ‘/dev/sda5’: 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.`但是,我可以從終端安裝只讀分區
正如我評論的那樣,(NTFS)文件系統很髒,正如錯誤消息所說。
chkdsk
因此,使用命令(或 Windows 等效的fsck )檢查它(在 Windows 上) - 清理它 - 然後重新啟動 Linux 就足夠了。如果您絕對需要 Windows 與 Linux 共享一些數據,您可以考慮在 Windows 上使用Ext4(或 Ext3)文件系統(與 Linux 共享),也許使用(在 Windows 上)ext2fsd
根據 Basile 的回答,一旦您能夠成功掛載 ntfs 分區,您可能需要一個驅動程序,例如ntfs-3g,以便能夠從中寫入/複製數據。