Or add a fromiso grub menu entry, in case you don't have a VM setup to boot iso attached to the VM.
A fromiso-Gub menu entry looks something like this:
with the snapshot iso "MX-snapshot.iso" copied into an /iso/ directory on an ext4 file system:
adjust boot options as desired:
Code: Select all
# custom.cfg
# save under /boot/grub/custom.cfg
#
menuentry "ISO-Boot MX-snapshot.iso" {
isopath=/iso/MX-snapshot.iso
bootoptions="kbd=de kbvar=nodeadkeys kbopt=caps:none lang=de tz=Europe/Amsterdam"
insmod ext2
insmod part_gpt
insmod part_msdos
insmod probe
insmod loopback
# use this to search for the full isopath
search --no-floppy --file --set=root $isopath
probe -u $root --set=buuid
loopback loop $isopath
linux (loop)/antiX/vmlinuz buuid=${buuid} fromiso=${isopath} quiet splasht nosplash ${bootoptions}
initrd (loop)/antiX/initrd.gz
}