Boot Veeam Recovery ISO from Grub Linux

Veeam Recovery Media 4

nano /boot/grub/grub.cfg

### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ###

menuentry "Veeam Recovery Media v4" {
 insmod ext4
 set isofile="/VeeamBoodISO/veeam-recovery-media-4.0.0.iso"
 loopback loop (hd0,1)/$isofile
 linux (loop)/isolinux/velinux iso-scan/filename=$isofile quiet noeject nopromt splash --
 initrd (loop)/isolinux/initrd.img
 }