10 lines
305 B
Bash
Executable file
10 lines
305 B
Bash
Executable file
#!/bin/sh -ex
|
|
exec qemu-system-x86_64 \
|
|
-enable-kvm \
|
|
-M q35 \
|
|
-cpu host -smp "$(("$(nproc)" / 2))" \
|
|
-m "$(("$(free | grep '^Mem:\s' | awk '{ print $NF }')" / 2))K" \
|
|
-device ich9-intel-hda -device hda-duplex \
|
|
-netdev user,id=net0 -device e1000,netdev=net0 \
|
|
-device nec-usb-xhci,id=xhci \
|
|
"$@"
|