View previous topic :: View next topic |
Author |
Message |
mathfeel l33t
Joined: 03 Aug 2004 Posts: 700
|
Posted: Sat Jun 17, 2006 1:28 am Post subject: [solved]how do i pick which driver to use? |
|
|
I have an nvidia nforce 2 chipset. There is a proprietary driver for the ethernet called nvnet, but also an opensource, reversed engineered driver call forcebeth. Both modules are compiled against the curernt kernel. How do I tell linux which modules to load when starting? Same goes for the audio driver nvsound vs. snd-intel8x0 (from alsa-driver)
Thanks _________________ -----------------------------------------------------------
"In heaven all the interesting people are missing"
-- Friedrich Nietzsche
Last edited by mathfeel on Sat Jun 17, 2006 1:51 am; edited 1 time in total |
|
Back to top |
|
|
jstead1 Guru
Joined: 01 Aug 2003 Posts: 427 Location: Oswego, NY where the snow is deep
|
Posted: Sat Jun 17, 2006 1:32 am Post subject: |
|
|
put the modules you want to load in
/etc/modules.autoload.d/kernel-2.6 _________________ jim |
|
Back to top |
|
|
mathfeel l33t
Joined: 03 Aug 2004 Posts: 700
|
Posted: Sat Jun 17, 2006 1:50 am Post subject: |
|
|
jstead1 wrote: | put the modules you want to load in
/etc/modules.autoload.d/kernel-2.6 |
udev actually handles most of modprobe now. The solution to my problem is, if I want to load nvnet instead of fetchdeth, I have to put
Code: |
alias eth0 nvnet
alias fetchdeth off
|
in /etc/modules.d/nvidia (I made this file up), then run modules-update. _________________ -----------------------------------------------------------
"In heaven all the interesting people are missing"
-- Friedrich Nietzsche |
|
Back to top |
|
|
|