Changes between Version 16 and Version 17 of UsersGuide/RunningInQEMU
- Timestamp:
- 2016-04-20T13:35:57Z (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersGuide/RunningInQEMU
v16 v17 34 34 === arm32 === 35 35 36 QEMU can emulate Integrator/CP. For an `image.boot` built for '''arm32/integratorcp''' profile, do: 37 36 38 {{{ 37 39 qemu-system-arm -kernel image.boot … … 46 48 === sparc64 === 47 49 50 QEMU can emulate a sun4u machine somewhat similar to Ultra 5. For an `image.iso` built for the '''sparc64/ultra''' profile, do: 51 48 52 {{{ 49 53 qemu-system-sparc64 -cdrom image.iso -boot d … … 52 56 === mips32 === 53 57 54 HelenOS has limited support for MIPS Malta.58 QEMU can emulate MIPS Malta and HelenOS has limited support for it. 55 59 56 Big-endian Malta:60 For big-endian Malta, do: 57 61 58 62 {{{ … … 60 64 }}} 61 65 62 Little-endian Malta:66 For little-endian Malta, do: 63 67 {{{ 64 68 qemu-system-mipsel -cpu 4Kc -kernel image.boot -nographic 65 69 }}} 70 71 `image.boot` is the image built for the '''mips32/malte-be''' or '''mips32/malta-le''' profiles, respectively. 66 72 67 73 == KVM == … … 97 103 === Using user mode network stack === 98 104 99 To activate user mode network stack, add `-net user` option to qemucommand line. QEMU will then create a virtual network `10.0.2.0/24`. You may use `10.0.2.15` as the IP for the guest computer. To redirect traffic to guest network use `-redir` option:105 To activate user mode network stack, add `-net user` option to QEMU command line. QEMU will then create a virtual network `10.0.2.0/24`. You may use `10.0.2.15` as the IP for the guest computer. To redirect traffic to guest network use `-redir` option: 100 106 101 107 {{{