Versions Compared

Key

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

...

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


Below is for OS installation

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

...