I learned something new and useful lately while updating my Multi-System bootable USB stick. You can test-boot an ISO, CDROM, or USB stick from the command line if you have KVM-QEMU installed. It's as simple as:
For ISO/CDs:
sudo qemu-system-x86_64 -cdrom filename.iso
For USB:
sudo qemu-system-x86_64 -hda /dev/sdx
I couldn't get anything to actually run from this window, but it's a neat and quick way to test something's boot-ability before actually trying to boot to it.
For ISO/CDs:
sudo qemu-system-x86_64 -cdrom filename.iso
For USB:
sudo qemu-system-x86_64 -hda /dev/sdx
I couldn't get anything to actually run from this window, but it's a neat and quick way to test something's boot-ability before actually trying to boot to it.
Comment