It's a type of Planche
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

grub_efi_crypto_install.sh 712B

12345678
  1. grub-install --target=x86_64-efi --efi-directory=/boot/efi --boot-directory=/boot/efi --bootloader-id=grub
  2. grub-mkconfig -o /boot/efi/grub/grub.cfg
  3. efibootmgr --create --disk /dev/sda --part 5 --loader /EFI/grub_uefi/grubx64.efi --label "Debian" --verbose
  4. # Some UEFI firmware requires that the bootable .efi stub have a specific name and be placed in a specific location: esp/EFI/boot/bootx64.efi (where esp is the UEFI partition mountpoint). Failure to do so in such instances will result in an unbootable installation. Fortunately, this will not cause any problems with other firmware that does not require this.
  5. # mkdir /boot/efi/EFI/boot
  6. # cp /boot/efi/EFI/grub/grubx64.efi /boot/efi/EFI/boot/bootx64.efi