1

We are using servers as DELL R630 in our lab's, when OS version is RHEL 7.9.

Here is an example from filesystem on these servers (from boot point of view):

NAME               MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda                  8:0    0  500G  0 disk
├─sda1               8:1    0    1G  0 part /boot
└─sda2               8:2    0  229G  0 part

Recently we get new DELL servers as R750, and we also installed the RHEL 7.9 from the same ISO on that servers.

Now we have additional boot partition - /boot/efi.

lsblk
NAME             MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda                8:0    0   500G  0 disk
├─sda1             8:1    0   512M  0 part /boot/efi
├─sda2             8:2    0     1G  0 part /boot
└─sda3             8:3    0   560G  0 part

From fstab its looks like this:

UUID=746E-8398          /boot/efi               vfat    defaults,uid=0,gid=0,umask=0077,shortname=winnt 0 0

Since we are using the same ISO file for installing RHEL 7.9 from the same ISO, on all type of servers, then we do not understand how comes we get the new partition /boot/efi?

King David
  • 1,001

1 Answers1

1

I think if you boot the installer in UEFI mode then it will use (create if needed) an EFI system partition; but if you boot in BIOS (legacy) mode then it won't.

The mount point for the EFI system partition is usually /boot/efi, like in your case.

It so happens in R630 Boot Mode is set to BIOS by default, while in R750 it's UEFI by default. It looks like the default mode was used for every server. This explains the difference.

Do not miss this warning:

CAUTION Switching the boot mode may prevent the system from booting if the operating system is not installed in the same boot mode.

If I were you, I would leave it as-is.