retiredt00 wrote: ↑Thu Nov 23, 2023 1:45 pm... Would you mind posting a few links on how to boot and ...
@retiredt00 I see the world like you in regards to the ISO (and IMG, too) as a vessel, unrelated to a device.
Either the ISO format or the IMG format are just that! They are deliverable formats that are understood among members. The notion of ISO that seems to stick in some of our minds is an association of/with CDs missing the concept of deliverable formats. And yes, I know the history of this going all the way back to beginning UNIX days. So we, you and I, continue to see a benefit in it as a deliverable vessel.
@retiredt00 here is couple of samples that might help you in QEMU use (caution I am using QEMU v7+ as the older versions behave a little differently):
Sample for booting an IMG file
Code: Select all
qemu-system-x86_64 -name "Boot any ISO/IMG file" -enable-kvm -boot d -m 2048 -smp 2 -vga std -device AC97 -net nic -net user -rtc base=localtime add-path-filename_here
Sample for booting a USB stick; where your Ventoy USBstick is /dev/sdX ('X' is the letter of your stick)
Code: Select all
qemu-system-x86_64 -name "Boot any USB device from its PC port" -enable-kvm -boot d -m 2048 -smp 2 -vga std -device AC97 -net nic -net user -rtc base=localtime /dev/USBstick
With the IMG sample reference, you could substitute an ISO file's pathname and it will boot just as well.
Hope this is helpful.