Changes between Version 13 and Version 14 of UsersGuide/QuickStart
- Timestamp:
- 2019-09-23T15:09:27Z (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersGuide/QuickStart
v13 v14 2 2 [[PageOutline(2-3)]] 3 3 4 (A.k.a. get HelenOS up and running in 10minutes)4 (A.k.a. get HelenOS up and running in 5 minutes) 5 5 6 6 This method is recommended for new users. We recommend to use [http://qemu.org QEMU], which we use for our day to day testing. If you use another emulator, you need to be more careful. … … 8 8 == Running HelenOS in QEMU == 9 9 10 To try out HelenOS in QEMU, download the latest HelenOS ISO [http://www.helenos.org/releases/HelenOS-0. 7.0-ia32.iso image] for the IA-32 architecture. Make sure a recent enough version of QEMU is installed on your system. QEMU 2.5.0 and newer should be fine. In the directory where you downloaded the HelenOS ISO image run:10 To try out HelenOS in QEMU, download the latest HelenOS ISO [http://www.helenos.org/releases/HelenOS-0.9.1-ia32.iso image] for the IA-32 architecture. Make sure a recent enough version of QEMU is installed on your system. QEMU 2.5.0 and newer should be fine. In the directory where you downloaded the HelenOS ISO image run: 11 11 12 12 {{{ 13 qemu-system-i386 -enable-kvm -d rive file=hdisk.img,index=0,media=disk,format=raw -device e1000,vlan=0 -net user -redir udp:8080::8080\14 -redir udp:8081::8081 -redir tcp:8080::8080 -redir tcp:8081::8081 -redir tcp:2223::2223 -usb -device intel-hda -device hda-duplex\15 -boot d -cdrom HelenOS-0.7.0-ia32.iso13 qemu-system-i386 -enable-kvm -device e1000,netdev=n1 \ 14 -netdev user,id=n1,hostfwd=udp::8080-:8080,hostfwd=udp::8081-:8081,hostfwd=tcp::8080-:8080,hostfwd=tcp::8081-:8081,hostfwd=tcp::2223-:2223 \ 15 -usb -device nec-usb-xhci,id=xhci -device usb-tablet -device intel-hda -device hda-duplex -serial stdio -boot d -cdrom HelenOS-0.9.1-ia32.iso 16 16 }}} 17 17