格式 : FAT32 的卷太大

Cas*_*jne 29 windows-7 filesystems external-hard-drive

格式化一个外部 500GB 硬盘花了将近 6 个小时,我开始像这样:

D:\>format /FS:fat32 F:
The type of the file system is EXFAT.
The new file system is FAT32.
Enter current volume label for drive F: musix

WARNING, ALL DATA ON NON-REMOVABLE DISK
DRIVE F: WILL BE LOST!
Proceed with Format (Y/N)? y
Formatting 476810M
Run Code Online (Sandbox Code Playgroud)

最终响应错误:

The volume is too big for FAT32.
Run Code Online (Sandbox Code Playgroud)

但是,根据 MSFT 的说法,没有这样的限制。(我使用 XP 规格,而我在 Win7 中格式化,好吗?)我不是在安装过程中格式化驱动器,而是在命令提示符下的已安装版本上。

我想使用这个具有最大可用容量的磁盘作为连接到我汽车中的 MDI 接口的外部硬盘驱动器来播放音乐。

什么是正确的设置,我可以使用/格式化(几乎)完整的 500GB 吗?

Jef*_*ood 32

多么烦人的限制!您无法从任何版本的 Windows 格式化大于 32GB 的 FAT32 卷...

C:\Users\jeff>format e: /FS:fat32 /Q
Insert new disk for drive E:
and press ENTER when ready...
The type of the file system is EXFAT.
The new file system is FAT32.
QuickFormatting 58.9 GB
The volume is too big for FAT32.
Format failed.
Run Code Online (Sandbox Code Playgroud)

...但它们必须存在,因为这里的 Lexar USB 64GB 驱动器已格式化为 FAT32!如何?

这是可能的,您只需要使用其他工具即可。我使用了这个,FAT32 格式

在此处输入图片说明

  • 这应该标记为答案 (3认同)
  • 出于某种原因,我无法重新格式化已格式化为 32GB 的 64GB 驱动器,我不得不在命令行中使用“DISKPART”,如下所示:http://superuser.com/a/470663 (2认同)

Ste*_*nny 21

鲁弗斯可以做到这一点。启动它,然后:

  1. 将启动选择设置为 Non bootable
  2. 将文件系统设置为 Large FAT32
  3. 将集群大小设置为 32 kilobytes
  4. 点击 START

集群大小对我来说是重要的一步。在我的系统上,只有这些选项有效:

32 kilobytes, 16 kilobytes

  • 这对我有用,但我还必须在“显示高级驱动器属性”中检查“列出 USB 硬盘驱动器”才能显示我的外部驱动器。 (2认同)

小智 7

您不能从 XP 或 Win7 格式化大于 32Gig 的 FAT32 卷,但您可以安装并使用更大的卷。

但是,您必须使用替代工具来格式化卷。

大于 32gig Fat32 驱动器上的可引导驱动器存在限制

分区工具

另请阅读此人页面以获取更多技术信息

  • 不要使用此答案链接中的分区工具。它安装、显示广告、打开,但不提供它承诺的“免费”服务,而是试图让您购买完整的许可证。 (13认同)

n00*_*00b 5

当您想使用最大可用容量时它没有帮助,但是对于那些需要 32GB 以下的 fat32 磁盘的人,我所做的是将主分区设置为 32GB 以下。

Run these steps/commands
1. Open command prompt as administrator 
2. Diskpart
3. List disk
4. Select disk X (where x is the disk you want to partition/format)
5. Clean
6. Create partition primary size=30000   (where 30,000 is the size in MB you want the partition to be, under 32GB)
7. Select partition 1
8. Active
9. Format quick fs=Fat32
10.Assign
11.Exit
Run Code Online (Sandbox Code Playgroud)