Ubuntu 14.04 無法掛載 2TB NTFS 硬碟

Ubuntu 14.04 無法掛載 2TB NTFS 硬碟

有人可以幫我解決這個問題嗎?

Error mounting /dev/sdg4 at /media/jote/DATA_4: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdg4" "/media/jote/DATA_4"' exited with non-zero exit status 13: Error reading bootsector: Input/output error
Failed to mount '/dev/sdg4': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.

我問一個問題在 AskUbuntu 上,得到了使用 Windows 的 chkdsk /f 修復「損壞的」NTFS 分割區的答案。然而,我的分區非常健康!有人可以解釋為什麼像 PartedMagic 這樣的工具(也是 Linux)可以完美地安裝和使用這個驅動器,而 Ubuntu 14.04 卻不能?

答案1

安裝 ntfs-3g 與sudo apt-get install ntfs-3g.然後在 NTFS 分割區上執行 ntfsfix 指令。

ntfsfix v2.0.0 (libntfs 10:0:0)

用法:ntfsfix [選項] 設備

Attempt to fix an NTFS partition.

-h, --help             Display this help
-V, --version          Display version information

例如:ntfsfix /dev/hda6

開發者電子郵件地址: [電子郵件受保護]Linux NTFS 首頁:http://www.linux-ntfs.org

===========================================

您可以使用名為 ntfsprogs 的程式。如果尚未安裝,您可以按鍵盤上的Ctrl+ Alt+打開終端來安裝它。T打開後,執行以下命令:

sudo apt-get install ntfsprogs

安裝完成後,您需要找出您的 NTFS 磁碟機名稱,只需執行sudo fdisk -l 即可找到,一旦知道名稱,然後

sudo ntfsfix /dev/sdXX

確保將 XX 替換為您的磁碟機名稱。

筆記:每當您處理分區時,請確保您有完整的備份,以確保安全。

=======================================

sudo apt-get install testdisk

然後運行它:

sudo testdisk

並按照說明進行操作。您必須搜尋分區,然後寫入變更。

感謝這裡的回答者:

答案2

該問題已在 Windows PC 上使用「chkdsk」命令解決。 https://neosmart.net/wiki/chkdsk/

Windows 將自動修復損壞的檔案系統。

它有效:D

相關內容