From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Bkhhy-0000UV-G1 for qemu-devel@nongnu.org; Wed, 14 Jul 2004 07:13:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Bkhhw-0000UF-QW for qemu-devel@nongnu.org; Wed, 14 Jul 2004 07:13:54 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bkhhw-0000UB-JU for qemu-devel@nongnu.org; Wed, 14 Jul 2004 07:13:52 -0400 Received: from [193.252.22.30] (helo=mwinf0107.wanadoo.fr) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BkhfI-0007cJ-Sq for qemu-devel@nongnu.org; Wed, 14 Jul 2004 07:11:13 -0400 Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf0107.wanadoo.fr (SMTP Server) with SMTP id 350FB18001A6 for ; Wed, 14 Jul 2004 13:11:07 +0200 (CEST) Received: from bellard.org (ATuileries-112-1-2-254.w80-14.abo.wanadoo.fr [80.14.188.254]) by mwinf0107.wanadoo.fr (SMTP Server) with ESMTP id D39FE180014E for ; Wed, 14 Jul 2004 13:11:06 +0200 (CEST) Message-ID: <40F514D1.1010008@bellard.org> Date: Wed, 14 Jul 2004 13:11:13 +0200 From: Fabrice Bellard MIME-Version: 1.0 Subject: Re: [Qemu-devel] Win98: how to exchange data with Linux References: <1089671145.12301.10.camel@aragorn> <200407130924.58879.vaise@votreservice.com> <1089727701.7843.58.camel@espiron.av7.local> <40F3EF20.2020802@kadu.net> <40F3F5B1.2040908@kadu.net> <40F41A65.8050807@volny.cz> <1089740739.17526.3.camel@aragorn> <40F422BB.8020908@kadu.net> <1089742289.13010.20.camel@aragorn> <40F42A9D.5000901@kadu.net> <20040714024203.GD6436@jbrown.mylinuxbox.org> <40F501E8.7030405@kadu.net> In-Reply-To: <40F501E8.7030405@kadu.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit 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 Adrian Smarzewski wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Jim C. Brown wrote: > | 1) and 2) are satified with a built-in qemu ftp server. > are there any windows ftp-clients mounting ftp resources as > a windows drive (read/write)? Here are the solutions I see (in order of increasing complexity): 1) built-in FTP server in the SLIRP layer. 2) On the fly read-only FAT drive built from a host directory content. It is complementary to (1) to enable booting without a disk image ((2) is used with (3) in dosemu for example). 3) dosemu MSDOS redirector. Would only work with MSDOS based OSes (maybe up to Windows Me). 4) Integrated SMB server in the SLIRP layer. SMB is complicated because it has many variants. If an early version works with all Windows version it can be interesting. 5) Windows specific filesystem driver talking directly with QEMU. Fabrice.