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?

0

1 Answer 1

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.

3
  • 2
    @KingDavid - So reinstall RHEL in BIOS mode instead of UEFI mode on the newer server.
    – Ramhound
    Commented May 31, 2023 at 12:38
  • sorry but still not clear if on R750 server we can switch between /boot or /boot/efi , in other words can we install the RHEL with /boot on R750 ? and not the /boot/efi ,
    – King David
    Commented May 31, 2023 at 12:38
  • 1
    @KingDavid I think you can, but please read the linked manual. E.g. it states "You must use only the UEFI boot mode in order to boot from NVMe drives". There may be other limitations. Commented May 31, 2023 at 12:40

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .