#!/bin/sh # Run QEMU with the talerwoo.img (create via setup-system.sh) TARGET=wooclient.img echo "start the system.." # Run qemu qemu-system-x86_64 -m 4G -enable-kvm -net nic,model=rtl8139 \ -net user,hostfwd=tcp::2222-:22,hostfwd=tcp::7776-:7776 \ -display none -hda $TARGET > /dev/null 2>&1 & echo ".. and wait some time until it is ready!" # wait for system to boot up sleep 15 # now start chromium in the VM echo "now start 'chromium' in the VM" ssh -F ./chromium.cfg localhost