* I may have found a bug(unlikely) with Qemu-kvm 1.1
@ 2013-02-05 8:06 Veruca Salt
2013-02-05 8:48 ` Markus Armbruster
0 siblings, 1 reply; 4+ messages in thread
From: Veruca Salt @ 2013-02-05 8:06 UTC (permalink / raw)
To: QEMU-KVM Mailing List
We are upgrading, carefully, from 1.0 to 1.1.
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 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.
Simon
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: I may have found a bug(unlikely) with Qemu-kvm 1.1
2013-02-05 8:06 I may have found a bug(unlikely) with Qemu-kvm 1.1 Veruca Salt
@ 2013-02-05 8:48 ` Markus Armbruster
2013-02-05 9:19 ` Veruca Salt
0 siblings, 1 reply; 4+ messages in thread
From: Markus Armbruster @ 2013-02-05 8:48 UTC (permalink / raw)
To: Veruca Salt; +Cc: QEMU-KVM Mailing List
Veruca Salt <verucasaltuk@hotmail.co.uk> 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"
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: I may have found a bug(unlikely) with Qemu-kvm 1.1
2013-02-05 8:48 ` Markus Armbruster
@ 2013-02-05 9:19 ` Veruca Salt
2013-02-05 9:20 ` Veruca Salt
0 siblings, 1 reply; 4+ messages in thread
From: Veruca Salt @ 2013-02-05 9:19 UTC (permalink / raw)
To: armbru; +Cc: QEMU-KVM Mailing List
Thank you very much Markus.
We were literally two minutes ahead, we've added a tty to -monitor so that a function key exposes it; actually, this is better than the original qemu monitor.
So now it's (say) -monitor /dev/tty2 and a simple ctrl-alt-f2 exposes a momitor screen.
Sorry for the false alarm, and once again, thanks a million.
Simon
----------------------------------------
> From: armbru@redhat.com
> To: verucasaltuk@hotmail.co.uk
> CC: kvm@vger.kernel.org
> Subject: Re: I may have found a bug(unlikely) with Qemu-kvm 1.1
> Date: Tue, 5 Feb 2013 09:48:59 +0100
>
> Veruca Salt <verucasaltuk@hotmail.co.uk> 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"
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: I may have found a bug(unlikely) with Qemu-kvm 1.1
2013-02-05 9:19 ` Veruca Salt
@ 2013-02-05 9:20 ` Veruca Salt
0 siblings, 0 replies; 4+ messages in thread
From: Veruca Salt @ 2013-02-05 9:20 UTC (permalink / raw)
To: armbru; +Cc: QEMU-KVM Mailing List
----------------------------------------
> From: verucasaltuk@hotmail.co.uk
> To: armbru@redhat.com
> CC: kvm@vger.kernel.org
> Subject: RE: I may have found a bug(unlikely) with Qemu-kvm 1.1
> Date: Tue, 5 Feb 2013 09:19:13 +0000
>
>
> Thank you very much Markus.
> We were literally two minutes ahead, we've added a tty to -monitor so that a function key exposes it; actually, this is better than the original qemu monitor.
> So now it's (say) -monitor /dev/tty2 and a simple ctrl-alt-f2 exposes a momitor screen.
>
> Sorry for the false alarm, and once again, thanks a million.
>
> Simon
>
> ----------------------------------------
> > From: armbru@redhat.com
> > To: verucasaltuk@hotmail.co.uk
> > CC: kvm@vger.kernel.org
> > Subject: Re: I may have found a bug(unlikely) with Qemu-kvm 1.1
> > Date: Tue, 5 Feb 2013 09:48:59 +0100
> >
> > Veruca Salt <verucasaltuk@hotmail.co.uk> 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"
> > --
> > To unsubscribe from this list: send the line "unsubscribe kvm" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
Also, sorry for top post. I know how you guys hate that.
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-02-05 9:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-05 8:06 I may have found a bug(unlikely) with Qemu-kvm 1.1 Veruca Salt
2013-02-05 8:48 ` Markus Armbruster
2013-02-05 9:19 ` Veruca Salt
2013-02-05 9:20 ` Veruca Salt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox