Changes between Version 13 and Version 14 of UsersGuide/QuickStart


Ignore:
Timestamp:
2019-09-23T15:09:27Z (5 years ago)
Author:
Martin Decky
Comment:

update the ISO URL and QEMU command line

Legend:

Unmodified
Added
Removed
Modified
  • UsersGuide/QuickStart

    v13 v14  
    22[[PageOutline(2-3)]]
    33
    4 (A.k.a. get HelenOS up and running in 10 minutes)
     4(A.k.a. get HelenOS up and running in 5 minutes)
    55
    66This 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.
     
    88== Running HelenOS in QEMU ==
    99
    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:
     10To 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:
    1111
    1212{{{
    13 qemu-system-i386 -enable-kvm -drive 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.iso
     13qemu-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
    1616}}}
    1717