From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1C6ggN-0003MC-6e for qemu-devel@nongnu.org; Sun, 12 Sep 2004 22:35:07 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1C6ggK-0003LX-0k for qemu-devel@nongnu.org; Sun, 12 Sep 2004 22:35:04 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C6ggJ-0003LU-RK for qemu-devel@nongnu.org; Sun, 12 Sep 2004 22:35:03 -0400 Received: from [61.8.3.250] (helo=mail.xplantechnology.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1C6gaK-0008OF-AJ for qemu-devel@nongnu.org; Sun, 12 Sep 2004 22:28:52 -0400 Message-ID: <414505EB.1000206@xplantechnology.com> Date: Mon, 13 Sep 2004 12:28:59 +1000 From: Luke Deller MIME-Version: 1.0 Subject: Re: [Qemu-devel] can use scsi? References: <200409122156.14005.os2@videotron.ca> In-Reply-To: <200409122156.14005.os2@videotron.ca> 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: os2@videotron.ca, qemu-devel@nongnu.org Marc Collin wrote: > i do many test with qemu > > i tried to run win 98 with it... > > that run well but in win98, it don't see my scsi card.... > > why? > > how to resolve that? > i have 1 hd, 1 burner and 1 cdrom scsi... and i can't use it qemu emulates a whole computer system. You basically have two different computers: a real one and an emulated one. You're running win98 on the emulated computer system, not the real one. The emulated computer system includes following hardware (at present): - a Cirrus 54xx video card (which actually outputs to the qemu window using SDL) - an IDE controller - IDE hard disks and cdrom drives (which actually access the disk image file or device you specify on the command line) - an ne2000 network card. - keyboard, mouse (which actually read input from the qemu window). - and more basic hardware that is normally part of a PC motherboard You can get the emulated cdrom to actually read from your real cdrom by specifying the appropriate command-line parameter; I use: -cdrom /dev/cdrom Instead of "/dev/cdrom" you can use the appropriate filename of your cdrom device, or even the filename of an .iso image. The emulated cdrom is not a burner, so you won't be able to burn CDs from inside qemu. Regards, Luke.