• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

SCSI dos drivers

Feskar

Junior Member
What do I need to get a scsi cd-rom to work in dos? I have an old computer I need to reinstall windows on (98), but I cant read from the cd-rom in dos. I've tried to boot with a win 98 boot disk, and a few others found on bootdisk.com, but it doesnt work.
 
SCSI DOS drivers are two layered. The lowest layer is a so called ASPI driver, abstracting the SCSI host adapter hardware. On top of that you stack device class drivers for whatever peripheral you're trying to access.

What you need to do is identify the host adapter you have there, pick up the DOS drivers package for it, and follow the installation instructions.

E.g. for an LSI/Symbios/NCR adapter, config.sys will have to have these lines added:

device=aspi8xx.sys
device=symcd.sys /D:CD001

and in autoexec.bat, you load the MS CD expansion on top of that ...

mscdex /D:CD001 /L:R


That'll make the 1st CD drive on your SCSI adapter appear as drive R: in DOS.


Good luck.

Peter
 
Thx alot Peter!

I used the wrong cd-rom driver, that was the error. It worked perfectly with symcd.sys 🙂
 
Back
Top