Hi folks,
I want to emulate NextStep OS 3.3, the i386 variant.
In order to install it on the hard drive, it expects to find
a CD-ROM drive on a SCSI bus, rather than IDE/ATAPI.
The OS comes with many drivers for a variety of SCSI cards.
So far, I'm finding that only the AMD driver even finds
the hardware that I'm asking Qemu to support.
But the CDROM is detected as having 0 bytes.
Can anyone assist with getting this to work?
I can provide a list of drivers the OS comes with.
Thanks.
 
Here's how I'm currently trying to run Qemu.
 
        qemu-system-i386\
                -net nic,model=ne2k_pci -net user \
                -m 64 \
                -cpu pentium \
                -fda 3.3_Boot_Disk.vfd \
                -boot a \
                -vga cirrus \
                -smp 4,sockets=1,cores=2,threads=2 --accel tcg,thread=multi \
                -M pc-i440fx-2.0 \
                -device am53c974,id=sd1 \
                -device dc390,id=sd2 \
                -device scsi-cd,drive=sd0 -drive file=Nextstep3.3-x86-68k.iso,if=none,id=drv0 \
                -drive id=cdrom0,if=none,format=raw,readonly=on,file=Nextstep3.3-x86-68k.iso \
                -device virtio-scsi-pci,id=scsi0 \
                -device scsi-cd,bus=scsi0.0,drive=cdrom0 \
                ~/nextstep.img

Reply via email to