From mboxrd@z Thu Jan 1 00:00:00 1970 From: Markus Armbruster Subject: Re: I may have found a bug(unlikely) with Qemu-kvm 1.1 Date: Tue, 05 Feb 2013 09:48:59 +0100 Message-ID: <87lib39mdg.fsf@blackfin.pond.sub.org> References: Mime-Version: 1.0 Content-Type: text/plain Cc: QEMU-KVM Mailing List To: Veruca Salt Return-path: Received: from mx1.redhat.com ([209.132.183.28]:34700 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752064Ab3BEItB (ORCPT ); Tue, 5 Feb 2013 03:49:01 -0500 In-Reply-To: (Veruca Salt's message of "Tue, 5 Feb 2013 08:06:14 +0000") Sender: kvm-owner@vger.kernel.org List-ID: Veruca Salt writes: > We are upgrading, carefully, from 1.0 to 1.1. Keep going; we're about to release 1.4 ;) > We welcome the improved AC97 support and the loss of the ehci warning > message on startup. > > I am finding an issue getting through to the monitor however. > Neither ctrl-alt-shift-2 nor ctrl-alt-2 exposes the monitor. I never use that one, but it should work. > I have even tried using the -mon option code examples to force a > monitor to stdio, but the monitor stubbornly refuses to appear. > > Any advice would be greatly appreciated. These all work for me: * Shorthand syntax -monitor stdio * Equivalent longhand -chardev stdio,id=mon0 -mon chardev=mon0,mode=readline,default=on * Same as config file snippet, for use with -readconfig [chardev "mon0"] backend = "stdio" [mon] chardev = "mon0" mode = "readline" default = "on"