From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ITVqD-0008LK-B7 for qemu-devel@nongnu.org; Fri, 07 Sep 2007 00:53:13 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ITVqC-0008L5-Mq for qemu-devel@nongnu.org; Fri, 07 Sep 2007 00:53:12 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ITVqC-0008L2-Il for qemu-devel@nongnu.org; Fri, 07 Sep 2007 00:53:12 -0400 Received: from ug-out-1314.google.com ([66.249.92.174]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1ITVqB-0007RQ-DH for qemu-devel@nongnu.org; Fri, 07 Sep 2007 00:53:11 -0400 Received: by ug-out-1314.google.com with SMTP id m2so235431uge for ; Thu, 06 Sep 2007 21:53:09 -0700 (PDT) Message-ID: <46E0D922.9000707@gmail.com> Date: Fri, 07 Sep 2007 06:52:50 +0200 From: Ronald MIME-Version: 1.0 Subject: Re: [Qemu-devel] 32 bit on a 64 bit machine References: <20170.208.60.35.95.1189096516.squirrel@youngdev.net> <7fac565a0709062027y199846adp6e28e6053d73d6ae@mail.gmail.com> In-Reply-To: <7fac565a0709062027y199846adp6e28e6053d73d6ae@mail.gmail.com> Content-Type: text/plain; charset=UTF-8; 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 Cc: solid@youngdev.net Alexey Eremenko schreef: > On 9/6/07, solid@youngdev.net wrote: > >> I have a 64 bit gentoo box that I need to run a 32 bit OS on. Is it >> possible to configure a hardware profile to run Qemu against? If so, how >> would it be done? Is there any documentation? >> >> > > There is a lot of documentation. RTFM > > > http://fabrice.bellard.free.fr/qemu/user-doc.html As far as I know, there are no "hardware" profiles. Qemu will take care of the different OS'es automatically (I think/hope :P ) Basically, the installation comes down to 2 commands: Create an image: qemu-img create qemu-windows 10G Run the image: qemu -boot c -m 256 -no-reboot -hda /mnt/data/qemu-windows -localtime Type Qemu -h : So you can insert an Iso for the installation :) (and a lot more options :) )