ipxe
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ipxe [2020/06/20 03:22] – [Custom ipxe] k2patel | ipxe [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 11: | Line 11: | ||
:!: Simple http server works just fine serving the ipxe.txt and kickstarts, but no HTTPS. | :!: Simple http server works just fine serving the ipxe.txt and kickstarts, but no HTTPS. | ||
- | <code bash> | + | <code bash | k2patel.ipxe> |
#!ipxe | #!ipxe | ||
echo Welcome to iPXE! | echo Welcome to iPXE! | ||
Line 29: | Line 29: | ||
shell | shell | ||
+ | </ | ||
+ | |||
+ | ==== Create image ==== | ||
+ | === For ISO === | ||
+ | <code bash> | ||
+ | cd ipxe/src | ||
+ | make bin/ | ||
+ | </ | ||
+ | |||
+ | :?: If you get error "make iso genisoimage: | ||
+ | |||
+ | <code bash> | ||
+ | cd ipxe | ||
+ | wget https:// | ||
+ | mkdir syslinux-6.03 | ||
+ | cd syslinux-6.03 | ||
+ | unzip ../ | ||
+ | cd src | ||
+ | make -j 4 ISOLINUX_BIN=../ | ||
+ | LDLINUX_C32=../ | ||
+ | </ | ||
+ | |||
+ | === For USB === | ||
+ | <code bash> | ||
+ | cd ipxe/src | ||
+ | make bin/ | ||
+ | dd if=ipxe.usb of=/dev/sdX | ||
+ | sync | ||
+ | </ | ||
+ | |||
+ | === For EFI === | ||
+ | <code bash> | ||
+ | cd ipxe/src | ||
+ | make bin-x86_64-efi/ | ||
+ | mkfs.fat -F32 /dev/sdxY | ||
+ | mkdir /tmp/efifld | ||
+ | mount /dev/sdxY / | ||
+ | mkdir -p / | ||
+ | cp bin-x86_64-efi/ | ||
+ | umount /tmp/efifld | ||
</ | </ |
ipxe.1592623371.txt.gz · Last modified: 2020/08/10 02:30 (external edit)