外部硬盘 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

我看了看TechNet 页面因为我的错误,但关闭每个应用程序后,转换仍然在中途失败。为什么它总是失败?我一直关注任务管理器,但看起来我的系统资源并没有耗尽。我使用的是 Windows 8。

答案1

考虑到唯一驱动器的限制,这里有一个想法:

  • 首先对驱动器进行碎片整理(以帮助提高以下步骤的效率)
  • 使用独立分区工具(如分区),将现有的 FAT32 分区缩小到最小大小(310GB?)。
  • 在现在的可用空间中,创建一个 NTFS 分区。(~ 178GB)
  • 将尽可能多的文件传输到新驱动器。
  • 再次重复 FAT32 分区缩减(现在应该约为 135GB)。
  • 重复 NTFS 扩展。
  • 传输文件后,彻底删除FAT32分区。

大型外部驱动器的分区调整可能需要长的时间,所以可能需要几个通宵任务。如果可以通过 eSata 连接,这将有助于加快速度。

而且,更重要的是,就像上面的另一位评论者所说的那样,如果这些是未备份的重要文件,那么更希望“祝你好运”。

答案2

尝试以详细模式运行它以查看错误:

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

祝你好运!

答案3

对于像我一样遇到这种情况的人,无论出于什么原因,请使用 /V 开关启用详细模式。您将看到发生故障的时间点。对我来说,它堵塞了几个空文件。我将它们从驱动器中移出,直到它完成,然后我将它们移回。此外,还可以尝试 /NoSecurity 和 /X 开关。

由于许多驱动器都预先格式化为 FAT32,因此我预计会有更多人遇到与我相同的问题。享受信息吧!

答案4

我在将记忆棒从 FAT32 转换为 NTFS 时遇到了完全相同的问题。但问题在于一个 .exe 文件仍然位于我的记忆棒上。删除后(其他视频和文本文件仍然位于我的记忆棒上),命令提示符能够使用“convert g: /fs:ntfs”将其转换为 NTFS。

我的建议是:先删除所有内容,然后它就起作用了!

相关内容