哪些分区很重要?

哪些分区很重要?

我目前正在使用 Windows 10,但我希望使用 Ubuntu Linux 双启动。我有点困惑所有这些分区是什么,以及其中哪些对于 Windows 正常启动很重要。

我有点迷茫,几乎删除了所有内容,只安装了 Linux,因为我认为这可能会更容易一些。

也许有人知道这么多分区是不是有问题。抱歉,这些是德语的。

分区

答案1

这取决于您是否有 BIOS 或 UEFI 主板:

  • BIOS:两个分区必需的:启动和操作系统

    DISKPART> sel dis 0
    Disk 0 is now the selected disk.
    
    DISKPART> lis par
      Partition ###  Type              Size     Offset
      -------------  ----------------  -------  -------
      Partition 2    System             100 MB   666 MB
      Partition 3    Primary            300 GB   767 MB
    
    
    Partition 2
    Type    : 0x07
    Hidden  : Yes
    Required: No
    
      Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
      ----------  ---  -----------  -----  ----------  -------  ---------  --------
      Volume 12        Boot          NTFS   Partition    100 MB  Healthy    System
    
    
    Partition 3
    Type    : 0x07
    Hidden  : No
    Required: No
    
      Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
      ----------  ---  -----------  -----  ----------  -------  ---------  --------
      Volume 8     C   System       NTFS   Partition    300 GB  Healthy    Boot
    
    • 三个分区是受到推崇的:WinRE、启动和操作系统
      温瑞 (道斯R生态恢复环境)应位于其自己的分区上,否则,如果操作系统分区发生损坏WinRE.wim,则无法启动 Recovery 到

      DISKPART> sel dis 0
      Disk 0 is now the selected disk.
      
      DISKPART> lis par
        Partition ###  Type              Size     Offset
        -------------  ----------------  -------  -------
        Partition 1    Recovery           665 MB  1024 KB
      
      
      Partition 1
      Type    : 0x27
      Hidden  : Yes
      Required: Yes
      
        Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
        ----------  ---  -----------  -----  ----------  -------  ---------  --------
        Volume 14        WinRE        NTFS   Partition    665 MB   Healthy    Hidden
      


  • UEFI:四个分区分别是必需的:WinRE、EFI、MSR 和 OS

    DISKPART> sel dis 0
    Disk 0 is now the selected disk.
    
    DISKPART> lis par
      Partition ###  Type              Size     Offset
      -------------  ----------------  -------  -------
      Partition 1    Recovery          2560 MB  1024 KB
      Partition 2    System             260 MB  2561 MB
      Partition 3    Reserved           128 MB  2821 MB
      Partition 4    Primary            300 GB  2949 MB
    
    
    DISKPART> sel par 1
    Partition 1 is now the selected partition.
    
    DISKPART> det par
    Partition 1
    Type    : de94bba4-06d1-4d40-a16a-bfd50179d6ac
    Hidden  : No
    Required: Yes
    Attrib  : 0X8000000000000001
    Offset in Bytes: 1048576
    
      Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
      ----------  ---  -----------  -----  ----------  -------  ---------  --------
    * Volume 14        WinRE        NTFS   Partition   2560 MB  Healthy    Hidden
    
    
    DISKPART> sel par 2
    Partition 2 is now the selected partition.
    
    DISKPART> det par
    Partition 2
    Type    : c12a7328-f81f-11d2-ba4b-00a0c93ec93b
    Hidden  : Yes
    Required: No
    Attrib  : 0X8000000000000000
    Offset in Bytes: 2685403136
    
      Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
      ----------  ---  -----------  -----  ----------  -------  ---------  --------
    * Volume 12        EFI          FAT32  Partition    260 MB  Healthy    System
    
    
    DISKPART> sel par 3
    Partition 3 is now the selected partition.
    
    DISKPART> det par
    Partition 3
    Type    : e3c9e316-0b5c-4db8-817d-f92df00215ae
    Hidden  : Yes
    Required: No
    Attrib  : 0X8000000000000000
    Offset in Bytes: 2958032896
    
    There is no volume associated with this partition.
    
    
    DISKPART> sel par 4
    Partition 4 is now the selected partition.
    
    DISKPART> det par
    Partition 4
    Type    : ebd0a0a2-b9e5-4433-87c0-68b6b72699c7
    Hidden  : No
    Required: No
    Attrib  : 0000000000000000
    Offset in Bytes: 3092250624
    
      Volume ###  Ltr  Label        Fs     Type        Size     Status     Info
      ----------  ---  -----------  -----  ----------  -------  ---------  --------
    * Volume 8     C   System       NTFS   Partition    300 GB  Healthy    Boot
    
    • 我已经自定义了我的WinRE.wim,这就是为什么它的分区是 2.5GB
      WinRE 分区必须至少 650MB(665MB RAW,即1024*650 = 665

相关内容