zfsjlll

zfsjlll

趁着年轻,好好犯病

What are ESP and MSR partitions, and how to create ESP and MSR partitions

Problem#

When using DiskGenius to create a new partition on a new hard drive, we see the option to create an ESP\MSR partition.
image
What does this mean? First, let's understand the necessary basic knowledge.

UEFI+GPT#

First of all, it should be clear that only UEFI boot + GPT (GUID Partition Table) hard disk partition will have ESP partition and MSR partition, while traditional (Legacy) boot + MBR (Master Boot Record) hard disk partition does not require ESP partition and MSR partition.

UEFI, the predecessor of which is the Intel Boot Initiative developed by Intel in 1998, was later renamed as Extensible Firmware Interface (EFI). In 2005, Intel handed it over to the Unified EFI Forum for promotion and development, and EFI was officially renamed UEFI (Unified EFI).

image

The UEFI Forum announced version 2.1 on January 7, 2007, so the standard configuration of new computers in the past decade has been UEFI boot, while computers from a decade ago used traditional BIOS boot.

image

UEFI firmware can also support traditional BIOS boot environment, and there is no essential difference in functionality between the two. The boot process of PC firmware has not fundamentally changed since the birth of the IBM PC.

In the ROM Stage, there is no memory, so assembly language code needs to be run on the ROM. After the temporary space Cache appears as RAM, C language can make its appearance. In the RAM Stage, with the memory that can be used to the fullest, many things that require large memory can start running. At this time, the core processes such as initializing the chipset, CPU, and motherboard modules need to be performed. In the Find Something to boot Stage, devices need to be enumerated, the boot device needs to be discovered, and all the nodes that the boot device depends on before it can start working need to be connected, and then the handover work begins, which is the beginning of the Windows or Linux era. The invention of UEFI has both contingency and inevitability. Before the invention of UEFI, PC machines were still using the traditional BIOS inherited from 1979, a bunch of hardware initialization code written in assembly language. It was closed, mysterious, and full of various unclear presets and ancestral codes. In 1997, Intel employees tried to support the server based on the Itanium processor chipset based on the traditional BIOS, but it was not successful. In the end, the plan was proven to be unworkable, and Intel eventually developed a completely new mechanism.

During the platform firmware and OS loader, an advanced C language interface is used, which is an inevitable choice so that the operating system can know as little as possible about the hardware details of the platform. An API that is independent of the firmware and CPU architecture between the firmware and the operating system was born.

UEFI is composed of modular C language style parameter stack passing and dynamic linking. It is easier to implement than BIOS, and has stronger fault tolerance and error correction features, shortening the system development time. The startup time of UEFI is faster than that of traditional BIOS startup, and it supports graphical operation with a mouse.

Difference between MBR and GPT partition tables

Before using a new hard drive, it must be partitioned. These partitions contain information about where the partition starts, so that the operating system knows which sector belongs to which partition and which partition can be booted.

MBR stands for Master Boot Record, which was first proposed in IBM PC DOS 2.0 in 1983.

It is called the Master Boot Record because it exists in a special boot sector at the beginning of the drive, which contains the boot loader of the installed operating system and the logical partition information of the drive.

MBR supports a maximum of 2TB hard drives and cannot handle hard drives larger than 2TB. It can only create up to 4 primary partitions. If more partitions need to be created, a so-called "extended partition" needs to be created, and logical partitions need to be created within it. Strictly speaking, the extended partition is not an actual partition in the true sense, but only a pointer to the next partition.

GPT stands for GUID Partition Table

As the name suggests, each partition on the drive has a global unique identifier, a randomly generated string that ensures that each GPT partition on Earth is assigned a completely unique identifier.

GPT does not have as many limitations as MBR. Its capacity can exceed what the operating system and file system can support, and it supports an unlimited number of partitions without the need to create extended partitions. The only limitation currently exists in the operating system. Windows supports a maximum of 128 GPT partitions.

GPT and EFI complement each other

UEFI is used to replace the old BIOS, while GPT is used to replace the old MBR. Although UEFI can boot MBR, it seems to be more compatible with GPT. It is worth noting that the traditional BIOS cannot boot the system disk in the GPT partition and will display a black screen indicating that the system disk cannot be booted.

In the GPT partition, ESP is a partition independent of the operating system

ESP (EFI system partition) is not visible in the Windows operating system. Computers that support UEFI boot need to boot the system from ESP. After the operating system is booted, it will no longer use it. Although ESP is a physical partition in FAT16 or FAT32 format, its partition identifier is EF (hexadecimal) instead of the conventional 0E or 0C.

MSR (Microsoft Reserved Partition) is a reserved partition for adjusting the partition structure

The MSR partition is essentially unallocated space written on the partition table. The Windows system does not create a file system or write data to the MSR partition, but it will check the MSR partition during Windows 8 and above system updates. Therefore, the MSR partition must be retained and cannot be deleted for Windows, but it is not affected for Linux and MacOS.

As for HD and RD, it is obviously used to distinguish the types of storage devices. For example, in the figure below: HD represents a hard drive, while RD represents a USB flash drive, and the Arabic numerals 0, 1, 2... represent the order in which they are mounted after the system self-test.

Steps#

Next, let's get back to the topic and demonstrate how to create an ESP/MSR partition using the DiskGenius partitioning tool:

1. Open the "DiskGenius" software and expand the left list to find the disk on which you want to create the ESP/MSR partition. As shown in the figure below:
v2-a1da4a4321056025e2b5a7b816859709_1440w
2. Click the plus sign in front of the disk to expand it, and you can see the disk. Right-click on it and select "Create ESP/MSR Partition". As shown in the figure below:
picture 2
3. Check the "Create ESP partition" and "Create MSR partition" options, and then set the size of the ESP partition according to your needs. Finally, click the "OK" button. In Windows, the EFI partition should not be less than 100MB, which is the default configuration during Windows installation, so if there are no special requirements, keep it at 100MB.

For the first generation of Advanced Format (4 KB per sector) drives, the minimum size of this partition is 260 MB.

For earlier 512-byte per sector drives, the minimum size of this partition is 100MB. As shown in the figure below:

image
4. Finally, according to the arrow in the figure below, the "ESP/MSR" partition is successfully created, as shown in the figure below:

Alt text#

References#

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.