Introducing ReactOS 0.4.16

8 points by bb010g


mdaniel

If you want to kick the tires on this, then I hope this script that I had lying around from one of the previous announcements helps save you 15 minutes of digging into qemu-isms

#!/usr/bin/env bash
set -euo pipefail
reactos_iso=ReactOS-0.4.16-i386.iso
hdd_fn=./reactos.qcow2
if [[ ! -e $hdd_fn ]]; then
    qemu-img create -f qcow2 $hdd_fn 15G
fi
qemu-system-x86_64 \
  -m 2G \
  -vga std \
  -display cocoa,zoom-to-fit=on \
  -device qemu-xhci \
  -device usb-tablet \
  -blockdev driver=file,node-name=cdfile,filename=${reactos_iso},read-only=on \
  -blockdev driver=raw,node-name=cdrom,file=cdfile \
  -device ide-cd,drive=cdrom,bootindex=0 \
  -net nic,model=e1000 \
  -net user \
  "$@"