Skip to content

Instantly share code, notes, and snippets.

@danielsource
Created March 3, 2025 00:36
Show Gist options
  • Save danielsource/ab7739ec3c4b5c2b58d7f23903e9d4fc to your computer and use it in GitHub Desktop.
Save danielsource/ab7739ec3c4b5c2b58d7f23903e9d4fc to your computer and use it in GitHub Desktop.
QEMU Windows 7 guest
#!/bin/sh
exec qemu-system-x86_64 \
-name "Windows 7" \
-enable-kvm \
-cpu host \
-smp 2 \
-m 1G \
-hda windows7.qcow2 \
-vga std \
-nic none `# disables network` \
"$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment