FreeBSD 下的 Gpart(不是 gparted)在使用 GPT(与 MBR 一起使用)时添加 FAT32 分区时存在问题。
这是磁盘:
% gpart show /dev/da0
=> 40 15257520 da0 GPT (7.3G)
40 15257520 - free - (7.3G)
但现在我得到一个错误:
% gpart add -t fat32 /dev/da0
gpart: Invalid argument
如何在 FreeBSD 下创建带有 GUID 分区表的 FAT32 分区?
答案1
man gpart
,部分PARTITION TYPES
指出:
ms-basic-data A basic data partition (BDP) for Microsoft
operating systems. In the GPT this type is
the equivalent to partition types fat16, fat32
and ntfs in MBR.
因此,由于您使用的是GPT
schema,因此必须使用ms-basic-data
type 而不是fat32
。