Forked from EmmanuelKasper/EFI boot on Lenovo Thinkcenter M92Z
Created
July 29, 2020 20:01
-
-
Save OrigamiEngineer/dacd659a65526ec56d2699458e3ec79a to your computer and use it in GitHub Desktop.
EFI boot on Lenovo Thinkcenter M92Z
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# disable secure boot in the bios, in menu security | |
# downlad and unzip refind-bin-0.7.8.zip | |
# install refind, assuming your ESP partition is /dev/sda1 and mounted in /boot/efi | |
cd refind-bin-0.7.8 | |
./install.sh | |
# type y and go ahead | |
# at that time your boot entry should look like that | |
Boot0000* rEFInd Boot Manager HD(1,800,f3800,b500458e-3e0e-4299-bc41-48424508bced)File(\EFI\refind\refind_x64.efi) | |
# rename boot entry from refind to official EFI fallback filename, see http://www.rodsbooks.com/refind/installing.html#naming for reasons | |
./mvrefind.sh /boot/efi/EFI/refind /boot/efi/EFI/BOOT | |
# notice the bootx64 file | |
efibootmgr --verbose | grep HD | |
Boot0000* rEFInd Boot Manager HD(1,800,f3800,b500458e-3e0e-4299-bc41-48424508bced)File(\EFI\refind\refind_x64.efi) | |
Boot0001* rEFInd Boot Manager HD(1,800,f3800,b500458e-3e0e-4299-bc41-48424508bced)File(\efi\boot\bootx64.efi) | |
# remove non working boot entry | |
efibootmgr --delete-bootnum --bootnum 0 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment