Advertisement
Guest User

Untitled

a guest
Oct 17th, 2015
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.17 KB | None | 0 0
  1. taskset 0x0000003F \
  2. qemu-system-x86_64 \
  3. -nodefaults \
  4. -name win7uefi \
  5. -enable-kvm \
  6. -machine type=pc-i440fx-2.3,accel=kvm \
  7. -cpu host,kvm=off \
  8. -smp 6,sockets=1,cores=3,threads=2 \
  9. -m 8192 \
  10. -mem-path /dev/hugepages \
  11. -mem-prealloc \
  12. -balloon none \
  13. -k de \
  14. -drive if=pflash,format=raw,readonly,file=$HOME/vms/win7uefi/ovmf_code_x64.bin \
  15. -drive if=pflash,format=raw,file=$HOME/vms/win7uefi/ovmf_vars_x64.bin \
  16. -drive if=none,file=/dev/sdb3,id=vdisk1,cache=none,format=raw,aio=native \
  17. -drive if=none,file=/dev/sda6,id=vdisk2,cache=none,format=raw,aio=native \
  18. -device virtio-blk-pci,scsi=off,config-wce=off,drive=vdisk1,id=disk1,x-data-plane=on \
  19. -device virtio-blk-pci,scsi=off,config-wce=off,drive=vdisk2,id=disk2,x-data-plane=on \
  20. -usb \
  21. -device vfio-pci,host=01:00.0 \
  22. -device vfio-pci,host=01:00.1 \
  23. -device vfio-pci,host=03:00.0 \
  24. -device vfio-pci,host=07:00.0 \
  25. -net nic,macaddr=52:54:00:12:34:57,model=virtio -net bridge,br=kvmbr0 \
  26. -spice port=5930,disable-ticketing \
  27. -device virtio-serial-pci \
  28. -device virtserialport,chardev=spicechannel0,name=com.redhat.spice.0 \
  29. -chardev spicevmc,id=spicechannel0,name=vdagent \
  30. -rtc base=utc \
  31. -device qxl-vga
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement