I just went thru this for Red Hat 6.
Interactively, you can just do
su
/sbin/modprobe dtc
I think, and that should turn on scsi support. You can see the
available modules in /lib/modules/*/scsi.
To do this automatically after boot, add the following to
/etc/rc.d/rc.sysinit:
# load scsi
if [ -n "$USEMODULES" ]; then
if grep -s -q "^alias scsi" /etc/conf.modules ; then
action "Loading scsi module" modprobe scsi
fi
fi
and add a line to /etc/conf.modules saying what module to load for scsi,
e.g.
alias scsi dtc
Better yet, recompile your kernel to include built-in support for
your SCSI card. Then you'll get the "hosts detected" message at boot time.
- dan
-- (The above is my opinion alone, and not that of my employer)
-- Source code, list archive, and docs: http://www.mostang.com/sane/ To unsubscribe: echo unsubscribe sane-devel | mail majordomo@mostang.com