Question

Install Nutanix CE on Intel NUC8i7HNK2

  • 19 September 2020
  • 1 reply
  • 730 views

I tried to create a boot UEFI with URL https://github.com/abbbi/nutanix_uefi

What information should I put for the image ce-2019.11.22-stable?

 



menuentry 'Nutanix Community Edition AHV (4.4.77-1.el7.nutanix.20190211.279.x86_64) 7 (Core)' --class nutanix --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-4.4.77-1.el7.nutanix.20190211.279.x86_64-advanced-4d8b0f1e-e014-4058-a050-c6d2ed188094' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root 4d8b0f1e-e014-4058-a050-c6d2ed188094
else
search --no-floppy --fs-uuid --set=root 4d8b0f1e-e014-4058-a050-c6d2ed188094
fi
linuxefi /boot/vmlinuz-4.4.77-1.el7.nutanix.20190211.279.x86_64 root=UUID=4d8b0f1e-e014-4058-a050-c6d2ed188094 ro crashkernel=128M rhgb quiet hugepages=0 intel_iommu=on,igfx_off iommu=pt elevator=noop vga=791 vfio_iommu_type1.allow_unsafe_interrupts=1
initrdefi /boot/initramfs-4.4.77-1.el7.nutanix.20190211.279.x86_64.img
}

 


This topic has been closed for comments

1 reply

This is what I used, but I couldn't get to the installer portion, it would boot to the splash but then ended up with dracut errors because it couldn’t find the uuid 6e28729c-5954-44c8-87a9-70efa532e7d2. I just exxtracted the zip file and got it from boot/grub2/grub.cfg(don’t know if that is correct way of doing it).

 

menuentry 'Nutanix Community Edition AHV (4.4.77-1.el7.nutanix.20191030.415.x86_64) 7 (Core)' --class nutanix --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-4.4.77-1.el7.nutanix.20191030.415.x86_64-advanced-6e28729c-5954-44c8-87a9-70efa532e7d2' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root 6e28729c-5954-44c8-87a9-70efa532e7d2
else
search --no-floppy --fs-uuid --set=root 6e28729c-5954-44c8-87a9-70efa532e7d2
fi
linuxefi /boot/vmlinuz-4.4.77-1.el7.nutanix.20191030.415.x86_64 root=UUID=6e28729c-5954-44c8-87a9-70efa532e7d2 ro crashkernel=128M rhgb quiet hugepages=0 intel_iommu=on,igfx_off iommu=pt elevator=noop vga=791 vfio_iommu_type1.allow_unsafe_interrupts=1
initrdefi /boot/initramfs-4.4.77-1.el7.nutanix.20191030.415.x86_64.img
}