From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1G5P5Q-0007Qb-Fo for qemu-devel@nongnu.org; Tue, 25 Jul 2006 11:44:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1G5P5N-0007Ou-9p for qemu-devel@nongnu.org; Tue, 25 Jul 2006 11:44:43 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G5P5N-0007Og-3v for qemu-devel@nongnu.org; Tue, 25 Jul 2006 11:44:41 -0400 Received: from [66.249.92.173] (helo=ug-out-1314.google.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1G5P6i-0001Zh-5h for qemu-devel@nongnu.org; Tue, 25 Jul 2006 11:46:04 -0400 Received: by ug-out-1314.google.com with SMTP id s2so426531uge for ; Tue, 25 Jul 2006 08:44:39 -0700 (PDT) Message-ID: <44C63C61.7090802@gmail.com> Date: Tue, 25 Jul 2006 17:44:33 +0200 MIME-Version: 1.0 Subject: Re: [Qemu-devel] Re QuickStartGuide on QEMU Wiki References: <1153783702.22048.266774470@webmail.messagingengine.com> In-Reply-To: <1153783702.22048.266774470@webmail.messagingengine.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit From: Dirk Behme 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 Andrew Malcolmson wrote: > Here is a super short addition you might want to add to the > QuickStartGuide page, A Wiki is something anybody can add improvements himself ;) > Create an empty 3 GB image file. You will be installing into this: a) > {{{ > qemu-img create mylinux.raw 3G > }}} b) > Install from a downloaded iso file: > > {{{ > qemu -hda mylinux.raw -cdrom /dev/cdrom -boot d -net user -m 256 > }}} c) > Run the installation: > > {{{ > qemu -hda mylinux.raw -cdrom /dev/cdrom -boot c -net user -m 256 > }}} Mmh, sorry, but I didn't get the point here. What is the key difference between the things above and - your step (a) and QuickStartGuide step 2: creation of blank disk image: qemu-img create -f qcow c.img 3G - your step (b) and QuickStartGuide step 3b: suppose you have an install iso image, called my_os_install.iso. Then run: qemu -cdrom my_os_install.iso -hda c.img -m 256 -boot d already in QuickStartGuide? Your step (c) is an extension of QuickStartGuide's "qemu -hda c.img -m 256" which I think can be done by anybody who understands the basics of QuickStartGuide on his own. Let us keep the QuickStartGuide simple and easy and don't explain every possible variant. For this anybody can use http://fabrice.bellard.free.fr/qemu/qemu-doc.html Regards Dirk