Changes between Initial Version and Version 1 of UsersGuide/RunningInQEMU


Ignore:
Timestamp:
2012-03-24T21:41:11Z (13 years ago)
Author:
Martin Sucha
Comment:

Add basic stub for this page

Legend:

Unmodified
Added
Removed
Modified
  • UsersGuide/RunningInQEMU

    v1 v1  
     1= Running HelenOS in QEMU =
     2
     3This page describes how to use QEMU to run various HelenOS images you either [http://www.helenos.org/download downloaded] or [wiki:UsersGuide/CompilingFromSource built yourself].
     4
     5== ia32 ==
     6
     7{{{
     8qemu -cdrom image.iso
     9}}}
     10
     11== amd64 ==
     12
     13{{{
     14qemu-system-x86_64 -cdrom image.iso
     15}}}
     16
     17== arm32 ==
     18
     19{{{
     20qemu-system-arm -kernel image.boot
     21}}}
     22
     23== ppc32 ==
     24
     25{{{
     26qemu-system-ppc -cdrom image.iso -boot d
     27}}}
     28
     29== sparc64 ==
     30
     31{{{
     32qemu-system-sparc64 -cdrom image.iso -boot d
     33}}}