Forked from EmmanuelKasper/EFI boot on Lenovo Thinkcenter M92Z
Created
October 25, 2017 17:07
-
-
Save dandrzejewski/9216ca65fd0b316cf7fff9a9166c3357 to your computer and use it in GitHub Desktop.
EFI boot on Lenovo Thinkcenter M92Z
This file contains 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