From 643152ec16b28f553a98f70a773193c5179c4a1f Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Sun, 30 Dec 2018 17:14:15 +0100 Subject: [PATCH] run_qemu.sh: add comment with an example of how to connect to qemu serial unix socket --- run_qemu.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run_qemu.sh b/run_qemu.sh index 038100c..f6963a8 100755 --- a/run_qemu.sh +++ b/run_qemu.sh @@ -30,6 +30,8 @@ KVM= if [ -e /dev/kvm ]; then KVM="-enable-kvm" fi +# to connect to serial use: +# minicom -D 'unix#/tmp/ttyS0' qemu-system-x86_64 $KVM -m 512M -nographic \ -monitor unix:/tmp/monitor,server,nowait \ -serial unix:/tmp/ttyS0,server,nowait \