Created
March 3, 2025 00:36
-
-
Save danielsource/ab7739ec3c4b5c2b58d7f23903e9d4fc to your computer and use it in GitHub Desktop.
QEMU Windows 7 guest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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