Changeset 3888 in MondoRescue for branches/3.3/mindi/README.uefi


Ignore:
Timestamp:
Mar 10, 2024, 8:16:15 PM (2 months ago)
Author:
Bruno Cornec
Message:

Remove lilo bootable iso images feature obsolete - Change mondo/mindi interface as a consequence + nonbootable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi/README.uefi

    r3886 r3888  
    4343Shell> bcfg boot dump -v -b
    4444
     45------------------------------
     46From https://unix.stackexchange.com/questions/753773/create-a-uefi-bootable-cd-with-isolinux
     47not specific to CD, but here is general guide how to make syslinux UEFI bootable medium:
     48
     49parted /dev/sdf mklabel gpt
     50parted /dev/sdf mkpart boot fat32 0% 100%
     51parted /dev/sdf set 1 esp on
     52parted /dev/sdf set 1 boot on
     53
     54mkfs.vfat -F 32 /dev/sdf1
     55
     56mount /dev/sdf1 /mnt/tmp/
     57
     58mkdir -p /mnt/tmp/EFI/BOOT/
     59
     60cp /usr/lib/SYSLINUX.EFI/efi64/syslinux.efi /mnt/tmp/EFI/BOOT/BOOTX64.EFI
     61cp /usr/lib/syslinux/modules/efi64/menu.c32 /mnt/tmp/EFI/BOOT/
     62cp /usr/lib/syslinux/modules/efi64/ldlinux.e64  /mnt/tmp/EFI/BOOT/
     63cp /usr/lib/syslinux/modules/efi64/libutil.c32  /mnt/tmp/EFI/BOOT/
     64
     65umount /mnt/tmp/
     66
     67efibootmgr --create --disk /dev/sdf --part 1 --loader /EFI/BOOT/BOOTX64.EFI --label "syslinux" --unicode
     68------------------------------
     69
     70
     71
    4572Please report any problem around that tool to bruno@mondorescue.org
    4673Bruno.
Note: See TracChangeset for help on using the changeset viewer.