外部硬碟 FAT32 到 NTFS 轉換失敗

外部硬碟 FAT32 到 NTFS 轉換失敗

我正在嘗試將外部硬碟的 FAT32 檔案系統轉換為 NTFS。事情是這樣的:

C:\Windows\system32>chkdsk G:
The type of the file system is FAT32.
Volume PIETEREXT created 3/19/2008 12:43
Volume Serial Number is 1806-2E30
Windows is verifying files and folders...
File and folder verification is complete.

Windows has scanned the file system and found no problems.
No further action is required.
  488,264,768 KB total disk space.
       72,192 KB in 1,503 hidden files.
    1,281,792 KB in 40,029 folders.
  309,235,168 KB in 199,915 files.
  177,675,584 KB are available.

       32,768 bytes in each allocation unit.
   15,258,274 total allocation units on disk.
    5,552,362 allocation units available on disk.

C:\Windows\system32>cd \

C:\>convert g: /fs:ntfs
The type of the file system is FAT32.
Enter current volume label for drive G: PIETEREXT
Volume PIETEREXT created 3/19/2008 12:43
Volume Serial Number is 1806-2E30
Windows is verifying files and folders...
File and folder verification is complete.

Windows has scanned the file system and found no problems.
No further action is required.
  488,264,768 KB total disk space.
       72,192 KB in 1,503 hidden files.
    1,281,792 KB in 40,029 folders.
  309,235,168 KB in 199,915 files.
  177,675,584 KB are available.

       32,768 bytes in each allocation unit.
   15,258,274 total allocation units on disk.
    5,552,362 allocation units available on disk.

Determining disk space required for file system conversion...
Total disk space:              488384001 KB
Free space on volume:          177675584 KB
Space required for conversion:   975155 KB
Converting file system
The conversion failed.
G: was not converted to NTFS

我看了看技術網頁面對於我的錯誤,但在關閉每個應用程式後,轉換仍然在中途失敗。為什麼總是失敗?我一直專注於任務管理器,但看起來我的系統資源並沒有接近耗盡。我使用的是 Windows 8。

答案1

考慮到只有唯一驅動器的限制,這裡有一個想法:

  • 首先對驅動器進行碎片整理(以提高後續步驟的效率)
  • 使用獨立的分區工具(例如格帕特),將現有的 FAT32 分割區減少到最小大小(310GB?)。
  • 在現在的可用空間中,建立一個 NTFS 分割區。 (~178GB)
  • 將盡可能多的檔案傳輸到新磁碟機。
  • 再次重複 FAT32 分割區縮減(現在應該約為 135GB)。
  • 重複 NTFS 擴充。
  • 傳輸檔案後,徹底刪除FAT32分割區。

大型外部磁碟機的分割區大小調整可能需要花費一些時間長的時間,因此可能需要幾個通宵的任務。如果可以透過 eSata 連接它,那將有助於加快速度。

另外,更重要的是,就像上面其他評論者所說的那樣,如果這些是未備份的重要文件,則更有希望「祝你好運」。

答案2

嘗試在 VERBOSE 模式下運行它以查看錯誤:

Convert E: /FS:NTFS /V /NoSecurity /X

祝你好運!

答案3

對於像我這樣遇到此問題的任何人,無論出於何種原因,請使用 /V 開關啟用詳細模式。您將看到失敗發生的時間點。對我來說,是一些空文件讓我窒息。我將它們移離驅動器,直到完成,然後將它們移回來。另外,還可以試試 /NoSecurity 和 /X 開關。

由於許多驅動器都預先格式化為 FAT32,因此我預計會有更多的人遇到與我相同的問題。享受資訊!

答案4

我在將記憶棒從 FAT32 轉換為 NTFS 時遇到了完全相同的問題。但問題是 .exe 檔案仍然位於我的記憶棒上。刪除後,(其他視訊和文字檔案仍然位於我的記憶棒上)命令提示字元能夠使用“convert g: /fs:ntfs”將其轉換為 NTFS。

我的提示:首先刪除所有內容,它應該可以工作!

相關內容