I need to know how to automatically load a kernel module at startup on FC9. All the sites talk about adding an entry to /etc/modules.conf.... But that does not exist on FC9... Instead I have /etc/modprobe.d/ directory... Now, I suppose I need to put a file in this dir for my driver but I have no idea how to write this file... I just need "modprobe name" to be run...
Asked
Active
Viewed 1,582 times
3 Answers
2
Setup rc.modules like so:
echo "modprobe name" >> /etc/rc.modules
chmod +x /etc/rc.modules
rc.modules gets executed early on in the boot proccess.
Or you can create a file in /etc/modprobe.d if you need to pass in options etc:
echo "options foo bar=1 baz=2" >> /etc/modprobe.d/my-options
James
- 7,809
1
Took me forever to fine a proper sysadmin alternative to the rc.local hack, but it looks like the proper way to is to load kernel modules on boot in Fedora is to do the following.
echo "modprobe name" >> /etc/sysconfig/modules/name.modules
chmod +x /etc/sysconfig/modules/name.modules
This gets loaded on boot via /etc/rc.sysinit and you can look at it to make sure your version of Fedora works this way.
kashani
- 3,942