Friday, September 02, 2022

how to create an EFI boot partition

https://askubuntu.com/questions/743095/how-to-prepare-a-disk-on-an-efi-based-pc-for-ubuntu

Using GParted, we can
Then this partition will be recognized as an EFI /boot partition by Linux installers as well as Windows. For Windows10/11 there is the additional requirement to make "C drive" GPT partitioned instead of MBR partitioned. With GParted, this is via the new partition table - GPT option,

And to mount the EFI partition if it exists, from a live CD or USB,
sudo fdisk -l
will list the EFI partition as "type" "EFI System", and then we can mount the identified partition as
sudo mount /dev/sda1 /mnt
or whatever. 

No comments:

Post a Comment