1
0
Fork 0
forked from ahurac/dotfiles
ahuarc-dotfiles/qemu/bin/linux

12 lines
270 B
Text
Raw Normal View History

#!/bin/sh -ex
name="$(basename "$0")"
qemu-system-x86_64 \
-monitor stdio -enable-kvm \
-cpu host -smp "$(nproc)" \
-m 4G \
-drive "file=images/$(basename "$0").qcow2,if=virtio" \
-net nic -net "user,hostname=${name}" \
-name "$name" \
"$@"