search for: dumi

Displaying 2 results from an estimated 2 matches for "dumi".

Did you mean: dumb
2019 Apr 25
0
UEFI and PXE
...ash # Set up a BIOS/UEFI PXE TFTP boot tree on a Fedora system set -e # Fetch and extract the RPMs dnf download syslinux-tftpboot shim-x64 grub2-efi-x64 grub2-efi-x64-modules memtest86+ for rpm in *.rpm; do pkg=${rpm%.rpm} if [ ! -d $pkg ]; then mkdir $pkg cd $pkg rpm2cpio ../$rpm | cpio -dumi cd .. name=$(rpm -q --qf '%{name}' -p $rpm) rm -f $name ln -s $pkg $name fi rm $rpm done # BIOS setup if [ ! -d bios ]; then mkdir bios cd bios ln -s ../syslinux-tftpboot/tftpboot/{ldlinux.c32,libutil.c32,lpxelinux.0,memdisk,menu.c32} . ln -s ../memtest86+/boot/memtest86+-* m...
2019 Apr 24
3
UEFI and PXE
We have a working PXE setup. I've tried to adapt it to UEFI as per RHEL6 manual, but the client won't boot. Strangely, tcpdump shows that the client tries to download all files via tftp from the dhcp server rather than the tftp server (they are different). next-server is pointing to the tftp server. Any clues?