i'm confused with module loading.
i have cdrw and configure ide-scsi emulation for it. doing "modprobe ide-scsi; mount /dev/scd0" is fine.
but, how to configure automatic loading of ide-scsi? it seems that just "touching" for /dev/scd0 do not cause kmod to exec modprobe at all. What to do? i think that loading several modules at boottime are not the best idea, in that case - why do i use modules at all?
Agri
- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
You need to change /etc/rc.d/rc.sysinit --------------------------- # Begin of /etc/rc.d/rc.sysinit ..... modprobe ide-scsi # End of /etc/rc.d/rc.sysinit --------------------------- for load only this module or enable autoloading by kernel
Loadable module support ---> [*] Automatic kernel module loading
p.s. sorry, my english is not good :(
- To unsubscribe from this list: send the line "unsubscribe linux-newbie" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.linux-learn.org/faqs
