* [Qemu-devel] Re QuickStartGuide on QEMU Wiki
@ 2006-07-24 23:28 Andrew Malcolmson
2006-07-24 23:42 ` Paul Brook
2006-07-25 15:44 ` Dirk Behme
0 siblings, 2 replies; 3+ messages in thread
From: Andrew Malcolmson @ 2006-07-24 23:28 UTC (permalink / raw)
To: qemu-devel
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
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] Re QuickStartGuide on QEMU Wiki
2006-07-24 23:28 [Qemu-devel] Re QuickStartGuide on QEMU Wiki Andrew Malcolmson
@ 2006-07-24 23:42 ` Paul Brook
2006-07-25 15:44 ` Dirk Behme
1 sibling, 0 replies; 3+ messages in thread
From: Paul Brook @ 2006-07-24 23:42 UTC (permalink / raw)
To: qemu-devel
> qemu -hda mylinux.raw -cdrom /dev/cdrom -boot d -net user -m 256
This is wrong. "-net user" by itself won't give you a working network. You
need to specify "-net nic -net user" (this is the default if no -net options
are given).
Paul
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] Re QuickStartGuide on QEMU Wiki
2006-07-24 23:28 [Qemu-devel] Re QuickStartGuide on QEMU Wiki Andrew Malcolmson
2006-07-24 23:42 ` Paul Brook
@ 2006-07-25 15:44 ` Dirk Behme
1 sibling, 0 replies; 3+ messages in thread
From: Dirk Behme @ 2006-07-25 15:44 UTC (permalink / raw)
To: qemu-devel
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
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-07-25 15:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-24 23:28 [Qemu-devel] Re QuickStartGuide on QEMU Wiki Andrew Malcolmson
2006-07-24 23:42 ` Paul Brook
2006-07-25 15:44 ` Dirk Behme
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).