From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lm0rv-0006qN-T5 for qemu-devel@nongnu.org; Tue, 24 Mar 2009 03:16:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lm0rt-0006qB-DB for qemu-devel@nongnu.org; Tue, 24 Mar 2009 03:16:14 -0400 Received: from [199.232.76.173] (port=60031 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lm0rt-0006q8-9H for qemu-devel@nongnu.org; Tue, 24 Mar 2009 03:16:13 -0400 Received: from mx20.gnu.org ([199.232.41.8]:29368) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lm0rr-0006Ln-Uq for qemu-devel@nongnu.org; Tue, 24 Mar 2009 03:16:12 -0400 Received: from static-71-162-243-5.phlapa.fios.verizon.net ([71.162.243.5] helo=grelber.thyrsus.com) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lm0qO-0000cd-Vm for qemu-devel@nongnu.org; Tue, 24 Mar 2009 03:14:41 -0400 From: Rob Landley Subject: Re: [Qemu-devel] how can i mount a folder as a qemu disk? Date: Tue, 24 Mar 2009 01:47:45 -0500 References: <9b711ec60903211902k5f8bdcf5s7eeb8035ae928c15@mail.gmail.com> In-Reply-To: <9b711ec60903211902k5f8bdcf5s7eeb8035ae928c15@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200903240147.45909.rob@landley.net> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paulo Silva On Saturday 21 March 2009 21:02:25 Paulo Silva wrote: > Hi! > How can i mount a folder as a disk, just like what UAE and Basilisk2 does? > This is very useful for me, for transfering stuff between the root > operating-system and the emulated one, and vice-versa > cheers, > Paulo Well, there's always sshfs: http://fuse.sourceforge.net/sshfs.html If you're stuck emulating windows and you don't mind it being A) read only, B) horribly inefficient, you can try the virtual FAT support: http://www.nongnu.org/qemu/qemu-doc.html#SEC25 Note that's got some serious rough edges. Specifically, if you _don't_ mount that read only, and your kernel accidentally tries to write to it, the device behaves badly. (My emulated linux kernel went into an endless loop due to a dropped interrupt or some such. No idea what windows would do, I haven't got one..) Rob