From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1G59qY-0001eb-3k for qemu-devel@nongnu.org; Mon, 24 Jul 2006 19:28:22 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1G59qW-0001dh-AC for qemu-devel@nongnu.org; Mon, 24 Jul 2006 19:28:21 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1G59qW-0001db-6c for qemu-devel@nongnu.org; Mon, 24 Jul 2006 19:28:20 -0400 Received: from [66.111.4.29] (helo=out5.smtp.messagingengine.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1G59rh-0003HS-V8 for qemu-devel@nongnu.org; Mon, 24 Jul 2006 19:29:34 -0400 Received: from frontend3.internal (frontend3.internal [10.202.2.152]) by frontend1.messagingengine.com (Postfix) with ESMTP id 3234AD91885 for ; Mon, 24 Jul 2006 19:28:18 -0400 (EDT) Message-Id: <1153783702.22048.266774470@webmail.messagingengine.com> From: "Andrew Malcolmson" Content-Disposition: inline Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Date: Mon, 24 Jul 2006 19:28:22 -0400 Subject: [Qemu-devel] Re QuickStartGuide on QEMU Wiki 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 Here is a super short addition you might want to add to the QuickStartGuide page, stolen from someone's posting in the Forums. Feel free to edit as I am a newbie here myself. Sorry I couldn't properly respond to the original post in this thread but I've just joined the list. == Linux Guest on Linux Host == Create an empty 3 GB image file. You will be installing into this: {{{ qemu-img create mylinux.raw 3G }}} Install from a downloaded iso file: {{{ qemu -hda mylinux.raw -cdrom /dev/cdrom -boot d -net user -m 256 }}} Run the installation: {{{ qemu -hda mylinux.raw -cdrom /dev/cdrom -boot c -net user -m 256 }}} ------------------- Andrew Malcolmson