From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D9xdB-00017b-S5 for qemu-devel@nongnu.org; Fri, 11 Mar 2005 22:49:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D9xd6-00015O-Fj for qemu-devel@nongnu.org; Fri, 11 Mar 2005 22:49:33 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D9xd6-00011k-8D for qemu-devel@nongnu.org; Fri, 11 Mar 2005 22:49:32 -0500 Received: from [64.233.184.198] (helo=wproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1D9xLV-0006me-MK for qemu-devel@nongnu.org; Fri, 11 Mar 2005 22:31:21 -0500 Received: by wproxy.gmail.com with SMTP id 68so1285841wri for ; Fri, 11 Mar 2005 19:31:20 -0800 (PST) Message-ID: <79bf98480503111931446466e5@mail.gmail.com> Date: Fri, 11 Mar 2005 19:31:20 -0800 From: Mike Swanson Subject: Re: [Qemu-devel] Using QEMU to run Win98 and up in Mac OS In-Reply-To: <42324c38.32b.7f0.16126@access4less.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <42324c38.32b.7f0.16126@access4less.net> Reply-To: Mike Swanson , qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: jcjalp@access4less.net, qemu-devel@nongnu.org You need to create a hard disk image first (1 gigabyte is fine for Windows). You also need a boot disk (bootdisk.com) to start the setup program on the Windows 98 CD-ROM. (Why the Win9x discs weren't bootable... I don't know, ask Microsoft) QEMU's command is pretty simple: qemu -hda win98.hd -cdrom /dev/cdrom -fda bootdisk.fd -boot a the -hda parameter is for the first hard disk in the virtual system. -cdrom is for the cdrom, -fda is for the first floppy, and -boot is the first boot device. When Windows 98 wants to reboot for the first time, reboot but exit QEMU when it does so. Then remove the floppy and boot parameters. It should boot from the hard disk, as Win98 expects.