From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:33620) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqMzj-0006hx-VN for qemu-devel@nongnu.org; Thu, 26 Jan 2012 05:56:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RqMze-000339-DQ for qemu-devel@nongnu.org; Thu, 26 Jan 2012 05:55:55 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52881) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqMze-000334-5P for qemu-devel@nongnu.org; Thu, 26 Jan 2012 05:55:50 -0500 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 q0QAtnc3023916 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 26 Jan 2012 05:55:49 -0500 From: Markus Armbruster References: <4ED8DF02.5060605@redhat.com> <4ED8E5A3.2080909@codemonkey.ws> <20111202150850.GJ2274323@orkuz.home> <4ED8EB8B.9090800@codemonkey.ws> <4ED9271E.7020800@redhat.com> <4ED935E9.4050006@codemonkey.ws> <4F20CEA2.8020308@redhat.com> <4F211FE7.409@redhat.com> Date: Thu, 26 Jan 2012 11:55:42 +0100 In-Reply-To: <4F211FE7.409@redhat.com> (Paolo Bonzini's message of "Thu, 26 Jan 2012 10:41:59 +0100") Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [libvirt] libvirt doesn't work with qemu 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: Libvirt , Eric Blake , qemu-devel Paolo Bonzini writes: > On 01/26/2012 04:55 AM, Eric Blake wrote: >> >> $ /usr/libexec/qemu-kvm -qmp stdio -S -display none >> qemu-kvm: -display: invalid option >> $ /usr/libexec/qemu-kvm -qmp stdio -S -nographic >> chardev: opening backend "stdio" failed >> qemu: could not open serial device 'stdio': Argument list too long The "argument list too long" is of course random crap found errno. The real cause is trying to create multiple stdio character devices. The other one is the -serial stdio you get by default with -nographic and no default monitor (-qmp suppresses that one). Character device creation error reporting is generally atrocious. I'm working on it. > Have you tried -nodefaults? That suppresses the default -serial, so it should work. I always use it, because our defaults are a labyrinth I can do without.