有时您需要对已经包含不同操作系统 (OS) 或 Windows 版本的磁盘进行分区,因此您可以使用 Linux 工具(例如或)fdisk
来gdisk
创建/配置分区以添加 Windows 11。问题是运行在 UEFI/EFI 上的 Windows 11 需要哪些分区。
重要的提示:最近有多个报告称,某些 Windows 更新无法安装,因为恢复分区小于 Windows 需要/预期的分区。我建议至少为其分配 1GB。
这是默认 Windows 10 64 EFI 分区/分区方案但现在适用于 Windows 11。
答案1
有关步骤,请跳至:Windows 的分区布局在各个版本中都是标准化的
重要的提示:最近有多个报告称,某些 Windows 更新无法安装,因为恢复分区小于 Windows 需要/预期的分区。
- 我无法复制- 在已删除的评论中,OP 声称原因是 Windows 设置
- 如果没有 OP 提供链接或屏幕截图来显示 Windows 安装程序在
specialize
配置过程中,唯一的解释就是用户错误,无论是 OEM、自定义部署还是最终用户
- 如果没有 OP 提供链接或屏幕截图来显示 Windows 安装程序在
- 如果驱动器被错误地手动分区,因为在
specialize
执行过程中默认情况下,Windows 10 v22H2 会创建一个 546MB 的 WinRE 分区后操作系统分区,特别是为了避免此问题:oobeSystem
:455,474KB [455MB]winre.wim
| WinRE 分区:82MB 可用KB5034441
:460,232KB [460MB]winre.wim
| WinRE 分区:77MB 可用- OEM 和许多企业会绕过 Windows 安装程序的默认设置
install.<esd|wim>
和unattend.xml
(安装程序根据用户选择动态生成应答文件),而不是通过中兴通讯部署共享维姆/风机过滤单元通过多学科治疗/记忆元件:- 这是某些部署分区驱动器的一个已知问题,因为某些 OEM 错误地将 WinRE 放置在驱动器 [WinRE、EFI、MSR、OS] 的前面,并且/或者没有为将来的 WinRE 更新留出至少 300MB 的可用空间,从而增加了 的大小,
winre.wim
这会导致此问题,因为无法调整驱动器开头的 WinRE 分区的大小,因为可用空间是从分区末尾占用的。
如果这种情况发生在两年一次的版本更新,使用 WinPE 和 Windows 安装程序,它可以缩小操作系统分区并直接从 WinPE 或在offlineServicing
或specialize
通过Windows 安装程序,新创建的 WinRE 分区具有适当的可用空间,可供将来增加大小;这会产生两个 WinRE 分区,由于不再需要原始分区,因此可以将其删除
- 这是某些部署分区驱动器的一个已知问题,因为某些 OEM 错误地将 WinRE 放置在驱动器 [WinRE、EFI、MSR、OS] 的前面,并且/或者没有为将来的 WinRE 更新留出至少 300MB 的可用空间,从而增加了 的大小,
Windows 的分区布局在各个版本中都是标准化的:
- UEFI: (需要谷氨酰胺磷酸酶)
- 电喷:100MB | Linux 双启动:850MB
- Windows 需要 100MB,而发行版需要不同的大小,最大为 ~750MB,因此将两者相加以避免出现问题
- 只需要一个 EFI 分区,但如果操作系统安装在不同的驱动器上,建议使用两个
- 磁共振成像(MSR):16MB
- 操作系统:最低 64GB(胜利 <11 有所不同)
- 温瑞:最低 768MB | 建议 1024MB
- 电喷:100MB | Linux 双启动:850MB
- BIOS: (需要膜生物反应器)
在 WinPE 中手动配置分区
要从 WinPE 对新驱动器进行分区,请参阅这回答
- 一旦 Windows 安装程序的 GUI 加载,打开一个终端: Shift+ F10→
DiskPart
::# If storing User Data directories on a partition other than C: (recommended), ::# max size required is ~300GB (multiply size wanted by 1024: 100*1024=102400) ::# List disks: lis dis ::# Select OS drive # Windows will be installed to: sel dis # ::# List partitions: lis par ::# Select and shrink the partition the OS partition [100GB] will be after: sel par # Shrink Desired=102400 Minimum=102400
- 创建启动分区:
- BIOS:
Cre Par Pri Size=100 Format Quick Fs=NTFS Label="Boot" Active
- UEFI:
::# If OS partition is on a drive containing an EFI partition: Cre Par Msr Size=16 ::# If OS partition is on a drive that doesn't contain an EFI partition: Cre Par EFI Size=100 Format Quick Fs=FAT32 Label="EFI" Cre Par Msr Size=16 ::# If other drive is a drive # before the OS drive, Setup will ::# use the other EFI partition; if this occurs: ::# Once booted to Windows, mount OS drive's EFI partition ::# to Y: via DiskPart, then execute from an Admin terminal: BcdBoot C:\Windows /s Y: /f UEFI ::# If Windows doesn't boot with other drive removed, boot WinPE/WinRE: BootRec /FixMBR && BootRec /RebuildBCD
- BIOS:
- 创建操作系统分区:
- 驱动器的其余部分作为操作系统分区 [99GB]:
BIOS:
UEFI:Cre Par Pri Format Quick Fs=NTFS Label="System"
Cre Par Pri Id=ebd0a0a2-b9e5-4433-87c0-68b6b72699c7 Format Quick Fs=NTFS Label="System"
- [64GB] 操作系统分区后的附加数据分区:
BIOS:
UEFI:Cre Par Pri Size=65536 Format Quick Fs=NTFS Label="OS"
Cre Par Pri Size=65536 Id=ebd0a0a2-b9e5-4433-87c0-68b6b72699c7 Format Quick Fs=NTFS Label="OS"
- 驱动器的其余部分作为操作系统分区 [99GB]:
- 创建 WinRE 分区: (应有 320MB 可用空间以适应将来 WIM 大小的增加)
- BIOS:
Shrink Desired=1024 Minimum=1024 Cre Par Pri id=27 Format Quick Fs=NTFS Label="WinRE"
- UEFI:
Shrink Desired=1024 Minimum=1024 Cre Par Pri Id=de94bba4-06d1-4d40-a16a-bfd50179d6ac Format Quick Fs=NTFS Label="WinRE" Gpt Attributes=0x8000000000000001
- BIOS:
- 关闭终端并正常进行 Windows 安装:
exit
→exit
EFI 引导
在启动 Windows 安装程序之前,请确保在 UEFI 固件设置中:
答案2
磁盘管理
Disk /dev/sda: 55 GiB, 59055800320 bytes, 115343360 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: D71AA00E-1725-4837-AD44-E6F88C5620F3
First usable LBA: 34
Last usable LBA: 115343326
Alternative LBA: 115343359
Partition entries starting LBA: 2
Allocated partition entries: 128
Partition entries ending LBA: 33
Device Start End Sectors Type-UUID UUID Name Attrs
/dev/sda1 2048 206847 204800 C12A7328-F81F-11D2-BA4B-00A0C93EC93B 6CDFD4B5-7089-4445-A08B-A6141947B533 Basic data partition GUID:63
/dev/sda2 206848 239615 32768 E3C9E316-0B5C-4DB8-817D-F92DF00215AE 8EF6E807-2C44-4414-B83B-88B2F1F5BC8B Microsoft reserved partition GUID:63
/dev/sda3 239616 114106367 113866752 EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 F7674BF6-869B-43D5-BEA1-809280529F68 Basic data partition GUID:63
/dev/sda4 114106368 115339263 1232896 DE94BBA4-06D1-4D40-A16A-BFD50179D6AC E5A161B4-703A-4CD0-8A65-DA45CD1BFBC4 RequiredPartition GUID:63
磁盘管理
label: gpt
label-id: D71AA00E-1725-4837-AD44-E6F88C5620F3
device: /dev/sda
unit: sectors
first-lba: 34
last-lba: 115343326
sector-size: 512
/dev/sda1 : start= 2048, size= 204800, type=C12A7328-F81F-11D2-BA4B-00A0C93EC93B, uuid=6CDFD4B5-7089-4445-A08B-A6141947B533, name="Basic data partition", attrs="GUID:63"
/dev/sda2 : start= 206848, size= 32768, type=E3C9E316-0B5C-4DB8-817D-F92DF00215AE, uuid=8EF6E807-2C44-4414-B83B-88B2F1F5BC8B, name="Microsoft reserved partition", attrs="GUID:63"
/dev/sda3 : start= 239616, size= 113866752, type=EBD0A0A2-B9E5-4433-87C0-68B6B72699C7, uuid=F7674BF6-869B-43D5-BEA1-809280529F68, name="Basic data partition", attrs="GUID:63"
/dev/sda4 : start= 114106368, size= 1232896, type=DE94BBA4-06D1-4D40-A16A-BFD50179D6AC, uuid=E5A161B4-703A-4CD0-8A65-DA45CD1BFBC4, attrs="RequiredPartition GUID:63"
磁盘分区
GPT fdisk (gdisk) version 1.0.9.1
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Disk /dev/sda: 115343360 sectors, 55.0 GiB
Sector size (logical/physical): 512/512 bytes
Disk identifier (GUID): D71AA00E-1725-4837-AD44-E6F88C5620F3
Partition table holds up to 128 entries
Main partition table begins at sector 2 and ends at sector 33
First usable sector is 34, last usable sector is 115343326
Partitions will be aligned on 2048-sector boundaries
Total free space is 6077 sectors (3.0 MiB)
Number Start (sector) End (sector) Size Code Name
1 2048 206847 100.0 MiB EF00 Basic data partition
2 206848 239615 16.0 MiB 0C01 Microsoft reserved ...
3 239616 114106367 54.3 GiB 0700 Basic data partition
4 114106368 115339263 602.0 MiB 2700