SCSI dos drivers

Feskar

Junior Member
Jan 17, 2002
13
0
0
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.
 

Peter

Elite Member
Oct 15, 1999
9,640
1
0
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
 

Feskar

Junior Member
Jan 17, 2002
13
0
0
Thx alot Peter!

I used the wrong cd-rom driver, that was the error. It worked perfectly with symcd.sys :)