Couldn't find EFI system partition.

DSI_FA

Member
Aug 10, 2023
5
0
6
Ever since I upgraded from PMG 8 to PMG 9.1.2, I get the following message whenever I run an update:
Couldn't find EFI system partition. It is recommended to mount it to /boot or /efi.
Alternatively, use --esp-path= to specify path to mount point.
 
Please post your /etc/fsab, there should be a mount entry like this:
Code:
UUID=XXX-XXXX /boot/efi vfat defaults 0 1

And the output of these two:
Code:
lsblk -o +fstype
[ -d /sys/firmware/efi ] && echo UEFI || echo BIOS
 
  • Like
Reactions: news
Bash:
cat /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/pmg/root / ext4 errors=remount-ro 0 1
/dev/pmg/swap none swap sw 0 0
proc /proc proc defaults 0 0
Bash:
lsblk -o +fstype
NAME         MAJ:MIN RM  SIZE RO TYPE MOUNTPOINTS FSTYPE
sda            8:0    0   30G  0 disk             
├─sda1         8:1    0 1007K  0 part             
├─sda2         8:2    0  512M  0 part             vfat
└─sda3         8:3    0 29.5G  0 part             LVM2_member
  ├─pmg-swap 252:0    0  2.4G  0 lvm  [SWAP]      swap
  └─pmg-root 252:1    0 27.1G  0 lvm  /           ext4
sr0           11:0    1 1024M  1 rom
 
It seems that you do not have a EFI because your server is in Legacy mode.
You can just ignore the message or change in BIOS to UEFI mode an reinstall the system.
 
That's what I thought, but I wanted to make sure it wouldn't affect the system or future updates.