2023-07-12 17:59:41 +02:00
|
|
|
#!/bin/sh -ex
|
|
|
|
name="$(basename "$0")"
|
2023-10-15 11:57:01 +02:00
|
|
|
qemu-system-x86_64 \
|
2023-11-16 10:13:02 +01:00
|
|
|
-monitor stdio -enable-kvm \
|
|
|
|
-cpu host -smp "$(("$(nproc)" / 2))" \
|
|
|
|
-m 8G \
|
|
|
|
-hda "images/${name}.qcow2" \
|
|
|
|
-net nic \
|
|
|
|
-name "$name" \
|
|
|
|
"$@"
|