Skip to content

Instantly share code, notes, and snippets.

@arne-cl
Created October 22, 2025 07:49
Show Gist options
  • Select an option

  • Save arne-cl/bfd63bbaae0e173a05fa8696cfb86ef4 to your computer and use it in GitHub Desktop.

Select an option

Save arne-cl/bfd63bbaae0e173a05fa8696cfb86ef4 to your computer and use it in GitHub Desktop.
run AUXrunner on Linux
#!/bin/bash
# Linux version of qemu-aux-single.command
# Run Apple A/UX in single-screen mode
cd "$(dirname "$0")/AUXrunner.app/Contents/Resources/Files"
qemu-system-m68k \
-M q800 \
-m 128 \
-bios Quadra800.rom \
-g 800x600x8 \
-display sdl \
-nic user,model=dp83932,mac=08:00:07:12:34:56,hostfwd=tcp::2121-:21 \
-drive file=./single/pram-aux.img,format=raw,if=mtd \
-device scsi-hd,scsi-id=0,drive=hd0 \
-drive file=root.img,media=disk,format=raw,if=none,id=hd0 \
-device scsi-hd,scsi-id=2,drive=hd1 \
-drive file=opt.img,media=disk,format=raw,if=none,id=hd1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment