@derfs
Thank you, but I'm currently having some trouble surfing the net with AmigaOS. Ibrowse3 seems to be the only SSL enabled browser but it continue to crash with the grim reaper, OWB does not support SSL connection and so I'm not able to download the archive...

EDIT: I managed to download from OS4Depot the older version 0.4 but it fails to mount the shared area.
My startup script is the following:
#!/bin/bash
cd "$(dirname "$0")" || exit 1
# Default: QEMU 11 compilato
QEMU_11="/opt/qemu-11/bin/qemu-system-ppc"
QEMU_8="qemu-system-ppc" # quello di sistema nel PATH
# Scelta versione
case "$1" in
8)
QEMU="$QEMU_8"
echo "Usando QEMU di sistema (8)"
;;
11|"")
QEMU="$QEMU_11"
echo "Usando QEMU compilato (11)"
;;
*)
echo "Uso: $0 [8|11]"
exit 1
;;
esac
exec taskset -c 2-7 "$QEMU" \
-M pegasos2 \
-m 2048 \
-rtc base=localtime \
-serial stdio \
-vga none \
-device sm501 \
-drive file=amigaos.qcow2,format=qcow2,if=ide,index=0,cache=writeback,aio=threads \
-drive file=WorkDisk.qcow2,format=qcow2,if=ide,index=1,cache=writeback,aio=threads \
-kernel bboot \
-initrd Kickstart.zip \
-netdev user,id=net0 \
-device rtl8139,netdev=net0 \
-fsdev local,security_model=mapped-xattr,id=fsdev0,path=/home/andrea/amiga_share
-device virtio-9p-pci-non-transitional,id=fs0,fsdev=fsdev0,mount_tag=SHARED
EDIT II: Found the mistake: I've forgot a '\', now it worked!
Edited by Kirirur on 2026/7/5 16:21:41
Edited by Kirirur on 2026/7/5 16:28:19