Hi,

Is it possible to install oVirt Hypervisor using PXE boot install.

I did a simple dhcpd+tftp+httpd install and I configured a test with CentOS 7 and it works both for legacy and efi.

When I tried with the Hypervisor ISO, the image booted but I didn't any package for installation, digging a little I found the ks.cfg which contain this :
cd /tmp
rpm2cpio /run/install/repo/Packages/redhat-virtualization-host-image-update*|cpio -ivd
squashfs=$(find|grep squashfs|grep -v meta)
ln -s $squashfs /tmp/squashfs
%end
liveimg --url=file:///tmp/squashfs

I modified my grub.cfg like this :
menuentry 'Install oVirtH 4.2' --class fedora --class gnu-linux --class gnu --class os {
linuxefi /networkboot/ovhyper4.2/vmlinuz inst.ks=http://192.168.1.50/pub/oh42/ks.cfg inst.stage2=http://192.168.1.50/pub/oh42/
initrdefi /networkboot/ovhyper4.2/initrd.img
}
This time I got Fatal error : file:///tmp/squashfs not found.

Regards.