HI,
for loading modules where the file is doesn't really matter
i will give you step by step since you feel uncomfortable
i created a file
/etc/rc.d/init.d/modules
Code:
#!/bin/bash
# Initialize Modules
modprobe someModule
modprobe anotherModule
chmod 755 /etc/rc.d/init.d/modules
then at the bottom of /etc/rc.d/init.d/rc
just put
Code:
/etc/rc.d/init.d/modules
that's it
everything is copasetic now
might help to have a /etc/modules.conf file
you can try to generate one if you don't have one at all with(as root)
cd /etc
modprobe -c >modules.conf
this will hopefully create a beginning to a working file that will need editing
(you can also try useing the one from your starting OS if the kernel version is simmilar)
or you can leave it out and see how you do without it