github.com/anuvu/nomad@v0.8.7-atom1/client/driver/test-resources/qemu/README.md (about) 1 # QEMU Test Images 2 3 ## `linux-0.2.img` 4 5 via https://en.wikibooks.org/wiki/QEMU/Images 6 7 Does not support graceful shutdown. 8 9 ## Alpine 10 11 ``` 12 qemu-img create -fmt qcow2 alpine.qcow2 8G 13 14 # Download virtual x86_64 Alpine image https://alpinelinux.org/downloads/ 15 qemu-system-x86_64 -cdrom path/to/alpine.iso -hda alpine.qcow2 -boot d -net nic -net user -m 256 -localtime 16 17 # In the guest run setup-alpine and exit when complete 18 19 # Boot again with: 20 qemu-system-x86_64 alpine.qcow2 21 ```