Emulating the XO/Quick Start/FreeBSD: Difference between revisions
Jump to navigation
Jump to search
m (FreeBSD is not a linux. :-)) |
DanielDrake (talk | contribs) No edit summary |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
<big><b><font color=red>For current information on emulation of OLPC software images, see [[Emulating the XO]]</font></b></big> |
|||
{{Deprecated}} |
|||
In FreeBSD, you can install QEMU from the ports system. |
In FreeBSD, you can install QEMU from the ports system. |
||
cd /usr/ports/emulators/qemu |
cd /usr/ports/emulators/qemu |
||
make -DWITH_KQEMU |
make -DWITH_KQEMU |
||
make install |
|||
or as a package |
or as a package |
||
Line 15: | Line 20: | ||
and launch the image you want: |
and launch the image you want: |
||
qemu -hda olpc-stream-development-7-20060609_1600-ext3.img |
qemu -m 256 -hda olpc-stream-development-7-20060609_1600-ext3.img |
||
allocating 256MB memory to the virtual machine since 'real' XO's have 256MB RAM. |
|||
== External links == |
== External links == |
Latest revision as of 16:15, 8 February 2011
For current information on emulation of OLPC software images, see Emulating the XO
In FreeBSD, you can install QEMU from the ports system. cd /usr/ports/emulators/qemu make -DWITH_KQEMU make install or as a package pkg_add -r qemu Then load kqemu and aio kernel modules: kldload kqemu kldload aio and launch the image you want: qemu -m 256 -hda olpc-stream-development-7-20060609_1600-ext3.img allocating 256MB memory to the virtual machine since 'real' XO's have 256MB RAM. External links
|