DocsPraxisQEMU Testing

QEMU Testing

Test Praxis in QEMU before installing on real hardware. The documentation includes a full QEMU workflow.

qemu-test.sh
#!/bin/bash
# Test Praxis in QEMU

# Create a virtual disk
qemu-img create -f qcow2 praxis.qcow2 20G

# Boot the ISO
qemu-system-x86_64 -m 2048 \
  -smp 2 \
  -cdrom praxis-bedrock-v1.iso \
  -hda praxis.qcow2 \
  -net user \
  -net nic

# Follow the five installation stages
# Then reboot from the virtual disk