Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
brew install qemu


QEMU Command Line Example to Create Windows 10 VM on Mac

Code Block
qemu-img.exe create -f qcow2 windows10.qcow2 2048G


Run QCOW2 image on Mac

Code Block
qemu-system-x86_64 \
-m 4G \
-vga virtio \
-display default,show-cursor=on \
-usb \
-device usb-tablet \
-machine type=q35,accel=hvf \
-smp 2 \
-cdrom ~/Downloads/windows_10.iso \
-hda ~/Documents/windows10.qcow2



Run QCOW2 image without GUI

...