From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:59287) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QETGP-0002Ah-JZ for qemu-devel@nongnu.org; Mon, 25 Apr 2011 17:24:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QETGO-0006tG-96 for qemu-devel@nongnu.org; Mon, 25 Apr 2011 17:24:13 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:49297) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QETGO-0006t1-2r for qemu-devel@nongnu.org; Mon, 25 Apr 2011 17:24:12 -0400 Received: by fxm2 with SMTP id 2so41625fxm.4 for ; Mon, 25 Apr 2011 14:24:10 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <4DB47A9A.5050504@parallels.com> References: <4DB47A9A.5050504@parallels.com> Date: Mon, 25 Apr 2011 16:24:10 -0500 Message-ID: From: Eric Van Hensbergen Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] virtfs error reporting? List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Rob Landley Cc: qemu-devel@nongnu.org On Sun, Apr 24, 2011 at 2:31 PM, Rob Landley wrote= : > So on the host side I'm trying to do this: > > $ qemu -cpu pentium3 -nographic -no-reboot -kernel bzImage \ > =A0-hda hda.sqf -append 'root=3D/dev/hda rw init=3D/sbin/init.sh panic=3D= 1 \ > =A0PATH=3D/bin:/sbin console=3DttyS0 HOST=3Di686 ' -net nic,model=3De1000= \ > =A0-net user -virtfs local,path=3D../root-filesystem-i686,security_model= =3Dmapped,mount_tag=3Droot > > And on the guest side I'm trying to do this: > > =A0mount -t 9p -o ro,trans=3Dvirtio,version=3D9p2000.L root /mnt > > And it's saying: > > =A0mount: mounting root on /mnt failed: No such device > Not that I expect this to be the problem (or if it is, I'm not sure of a good reason for it) -- but are you sure this isn't a different case of the same problem you had with a TCP server? In other words, put the root /mnt before the -o: mount -t 9p root /mnt -o ro,trans=3Dvirtio,version=3D9p2000.L -eric