From fcd8ef8dd4a9ccd4137ce951efbc81ad83c90820 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Tue, 3 Mar 2015 11:15:43 +0100 Subject: [PATCH] add vm script to launch QEMU with ssh port redirection and virtio --- vm | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 vm diff --git a/vm b/vm new file mode 100755 index 0000000..5c49759 --- /dev/null +++ b/vm @@ -0,0 +1,13 @@ +#!/bin/sh +set -e +image="$1" +[ -e "$image" ] || { echo "Usage: $0 [options...]" >&2; exit 1; } +shift +# determine ssh forward port +ssh_port=22000 +while echo '' | nc localhost $ssh_port >/dev/null; do + ssh_port=$((ssh_port+1)) +done +echo "Host ssh port: $ssh_port" +qemu-system-x86_64 -enable-kvm -m 2048 -drive file="$image",if=virtio \ + -net nic,model=virtio -net user,hostfwd=tcp::${ssh_port}-:22 "$@" -- 2.39.2