From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wn3B1-0006tb-3h for qemu-devel@nongnu.org; Wed, 21 May 2014 05:51:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wn3Au-0000FO-KK for qemu-devel@nongnu.org; Wed, 21 May 2014 05:51:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:1776) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wn3Au-0000FC-CA for qemu-devel@nongnu.org; Wed, 21 May 2014 05:51:04 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s4L9p37S024372 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 21 May 2014 05:51:03 -0400 Message-ID: <1400665860.10933.35.camel@nilsson.home.kraxel.org> From: Gerd Hoffmann Date: Wed, 21 May 2014 11:51:00 +0200 In-Reply-To: <537C6F6E.5070401@redhat.com> References: <1400594447-16637-1-git-send-email-kraxel@redhat.com> <1400594447-16637-7-git-send-email-kraxel@redhat.com> <537B9A2B.7030807@redhat.com> <1400661485.10933.22.camel@nilsson.home.kraxel.org> <537C6F6E.5070401@redhat.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 6/6] docs: add multiseat.txt List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org Hi, > > If there is anything to configure then it most likely will be ui > > specific, i.e. we could possibly allow something like this ... > > > > -display gtk,display=video.1 \ > > -vnc :0,display=video.2 > > > > ... to have one head show up on gtk and the other on vnc (needs '-vga > > none -device VGA,id=video.1' instead of '-vga std'). > > How would you configure the case where one input goes to multiple heads > (e.g. 2 seats, 4 monitors)? You need one keyboard per head (i.e. 2) and one tablet per display (i.e. 4). The usb tablet has a additional head property, so you can specify which tablet belongs to which monitor. You also need a vga card which supports multiple heads (non-upstream virtio-gpu will do). Not figured yet how to do guest configuration (teach X server which tablet belongs to which monitor) for the multihead case. Note: qxl supports multi-head already, but can't be used for this as it goes spice-specific side ways to get the job done. Fixing that is on my todo list, but it isn't trivial, especially the backward compatibility. Probably also needs spice-server changes. cheers, Gerd