From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O6xph-0005nE-D0 for qemu-devel@nongnu.org; Tue, 27 Apr 2010 23:21:05 -0400 Received: from [140.186.70.92] (port=35684 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O6xpf-0005n6-Uq for qemu-devel@nongnu.org; Tue, 27 Apr 2010 23:21:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O6xpf-0000zp-10 for qemu-devel@nongnu.org; Tue, 27 Apr 2010 23:21:03 -0400 Received: from mail-qy0-f188.google.com ([209.85.221.188]:65214) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O6xpe-0000zj-Ut for qemu-devel@nongnu.org; Tue, 27 Apr 2010 23:21:02 -0400 Received: by qyk26 with SMTP id 26so8117496qyk.19 for ; Tue, 27 Apr 2010 20:21:02 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20100427152640.447f7390@redhat.com> References: <20100427152640.447f7390@redhat.com> From: Jun Koi Date: Wed, 28 Apr 2010 12:20:42 +0900 Message-ID: Subject: Re: [Qemu-devel] Multiple monitor interfaces? Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: qemu-devel@nongnu.org On Wed, Apr 28, 2010 at 3:26 AM, Luiz Capitulino w= rote: > On Tue, 27 Apr 2010 23:23:45 +0900 > Jun Koi wrote: > >> Hi, >> >> I am wondering if is it possible to have multiple monitor interfaces >> at the same time? If so, how can we open more than one? > > =A0The following command will create three monitors (stdio, vc and telnet > on port 4444): > > # qemu [...] -chardev stdio,id=3Dmon0 -mon chardev=3Dmon0,mode=3Dreadline= \ > =A0 =A0 =A0 =A0 =A0 =A0 -chardev socket,id=3Dmon1,host=3Dlocalhost,port= =3D4444,server \ > =A0 =A0 =A0 =A0 =A0 =A0 -mon chardev=3Dmon1,mode=3Dreadline \ > =A0 =A0 =A0 =A0 =A0 =A0 -chardev vc,id=3Dmon2 -mon chardev=3Dmon2,mode=3D= readline This is very helpful, thanks. Now if I want to open a monitor on an Unix domain socket, which chardev (and its corresponding param) should I use?? Thanks, J