> I recently install Linux Mandrake 7.02 but had some problems when detecting
> SCSI card. As a solution, I removed the SCSI card and install successfully
> Linux. I'm now trying to make my SCSI card being recognized. How can I do it
> ? How can I check when my SCSI card is recognized ?
> Thanks.
Assuming you have scsi support set up as modules, if you call "/sbin/lsmod -a"
you should see at least scsi_mod and <your_scsi_host_adaptor> listed. If not
then call "/sbin/insmod scsi_mod" and then "/sbin/insmod
<your_scsi_host_adaptor>" (e.g for me it would be "/sbin/insmod aha1542").
Assuming you also have the proc filesystem set up (a good idea anyway), try
"cat /proc/scsi/scsi". If your card is detected ok you should see a list of
your devices connected to it.
Guy