Advertisement
Guest User

Full Command Line Used To Launch QEMU Guest

a guest
Aug 3rd, 2017
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.58 KB | None | 0 0
  1. qemu-system-x86_64 \
  2. -bios ovmf.fd \
  3. -rtc clock=vm,base=localtime \
  4. -m 3G \
  5. -k en-us \
  6. -cpu Penryn,kvm=off,vendor=GenuineIntel \
  7. -machine q35,accel=kvm,usb=off,vmport=off \
  8. -smp 4,cores=2 \
  9. -device isa-applesmc,osk=$APPLEOSK \
  10. \
  11. -netdev user,id=vnet0 \
  12. -device e1000-82545em,netdev=vnet0,id=vnet0 \
  13. \
  14. -device ide-drive,bus=ide.0,drive=macHDD \
  15. -drive id=macHDD,if=none,cache=none,format=raw,file=x.img \
  16. \
  17. -usb \
  18. -device qemu-xhci,id=xhci \
  19. -device usb-tablet,bus=usb-bus.0 \
  20. -device usb-kbd,bus=usb-bus.0 \
  21. -device usb-host,bus=usb-bus.0,vendorid=0x05ac,productid=0x12a8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement