We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When booting an iso from a read-only nix location, qemu fails with:
<vm> qemu-system-x86_64: Could not open 'grub.iso': Read-only file system
The iso is attached using the parameter -drive file=grub.iso,format=raw,if=ide,media=disk
-drive file=grub.iso,format=raw,if=ide,media=disk
Changing media manually to media=cdrom boots the image.
media=cdrom
The text was updated successfully, but these errors were encountered:
Currently it's not possible to specify other media-types with vm.boot(): https://github.com/includeos/vmrunner/blob/master/vmrunner/vmrunner.py#L1027
vm.boot()
And only disk is supported in the schema: https://github.com/includeos/vmrunner/blob/master/vmrunner/vm.schema.json#L59
disk
Sorry, something went wrong.
No branches or pull requests
When booting an iso from a read-only nix location, qemu fails with:
The iso is attached using the parameter
-drive file=grub.iso,format=raw,if=ide,media=disk
Changing media manually to
media=cdrom
boots the image.The text was updated successfully, but these errors were encountered: