Go Back   openSUSE Forums > Archives > SF Archives > ARCHIVES - Network/Internet > ARCHIVES - Wireless Networking
Forums FAQ Members List Search Today's Posts Mark Forums Read


ARCHIVES - Wireless Networking Questions specific to wireless networking using SUSE Linux

 
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 15-May-2008, 10:34
Michael___
Guest
 
Posts: n/a
Default

I am trying to blacklist the bcm43xx wireless card driver in SuSE 10.3 so that I can use Ndiswrapper because even after applying the bcm43xx-fwcutter package my wireless card is still not working. I edited /etc/modprobe.d/blacklist and added the entry "blacklist bcm43xx" (no quotes), but after I reboot and run the command modprobe -l bcm* I still see that driver in the list. What am I missing? Any help is greatly appreciated. Thanks! Mike
Code:
mikem-mininote:~ # modprobe -l bcm*
/lib/modules/2.6.22.17-0.1-default/kernel/drivers/net/wireless/bcm43xx/bcm43xx.ko
/lib/modules/2.6.22.17-0.1-default/kernel/drivers/media/dvb/frontends/bcm3510.ko
/lib/modules/2.6.22.17-0.1-default/kernel/drivers/bluetooth/bcm203x.ko
mikem-mininote:~ #
  #2 (permalink)  
Old 15-May-2008, 15:01
swerdna
Guest
 
Posts: n/a
Default

Quote:
I am trying to blacklist the bcm43xx wireless card driver in SuSE 10.3 so that I can use Ndiswrapper because even after applying the bcm43xx-fwcutter package my wireless card is still not working. I edited /etc/modprobe.d/blacklist and added the entry "blacklist bcm43xx" (no quotes), but after I reboot and run the command modprobe -l bcm* I still see that driver in the list. What am I missing? Any help is greatly appreciated. Thanks! Mike
Code:
mikem-mininote:~ # modprobe -l bcm*
/lib/modules/2.6.22.17-0.1-default/kernel/drivers/net/wireless/bcm43xx/bcm43xx.ko
/lib/modules/2.6.22.17-0.1-default/kernel/drivers/media/dvb/frontends/bcm3510.ko
/lib/modules/2.6.22.17-0.1-default/kernel/drivers/bluetooth/bcm203x.ko
mikem-mininote:~ #
[/b]
Blacklisting doesn't delete the drives you listed above. It stops them from being loaded, which is exactly what you want.

Swerdna
  #3 (permalink)  
Old 15-May-2008, 23:45
kezzel
Guest
 
Posts: n/a
Default

What model of notebook/pc are you using?


I have a dell notebook and had to use ndiswrapper to get the wireless up and running.

when I did a "ndiswrapper -l" it would output "bcm43xx"

I downloaded the dell drivers for my notebook to install the "bcmwl5" ftp.us.dell.com/network/R129083.EXE
after downloading the R129083.EXE I downloaded the winedoors and installed winrar from the list. I used winrar to extract R129083.EXE (there may be a different way but that is how I did it) After the exe extracted, there was a folder called Drivers.

In the Drivers folder there is 3 files "bcm43xx.cat" "bcmwl5.inf" "bcmwl5.sys" Then I used the following.

# to remove the driver
ndiswrapper -e bcm43xx
# Go to the driver folder with the 3 files
ndiswrapper -i bcmwl5.inf
ndiswrapper -m
# to make sure the bcmwl5 is used and not bcm43xx
ndiswrapper -l
# Then do the modprobe
modprobe ndiswrapper


I hope this helps.
  #4 (permalink)  
Old 16-May-2008, 12:21
Michael___
Guest
 
Posts: n/a
Default

Quote:
What model of notebook/pc are you using?
I have a dell notebook and had to use ndiswrapper to get the wireless up and running.

when I did a "ndiswrapper -l" it would output "bcm43xx"

I downloaded the dell drivers for my notebook to install the "bcmwl5" ftp.us.dell.com/network/R129083.EXE
after downloading the R129083.EXE I downloaded the winedoors and installed winrar from the list. I used winrar to extract R129083.EXE (there may be a different way but that is how I did it) After the exe extracted, there was a folder called Drivers.

In the Drivers folder there is 3 files "bcm43xx.cat" "bcmwl5.inf" "bcmwl5.sys" Then I used the following.

# to remove the driver
ndiswrapper -e bcm43xx
# Go to the driver folder with the 3 files
ndiswrapper -i bcmwl5.inf
ndiswrapper -m
# to make sure the bcmwl5 is used and not bcm43xx
ndiswrapper -l
# Then do the modprobe
modprobe ndiswrapper
I hope this helps.
[/b]
This worked perfect. I had most of these steps correct, but as soon as I did the ndiswrapper -l command I would see bcm43xx listed as "alternate driver" so I assumed something hadn't worked because it didn't show bcmwl5.inf. However I guess that doesn't matter because I continued to the modprobe steps and it started working.

Thanks!
Mike
  #5 (permalink)  
Old 16-May-2008, 20:05
kezzel
Guest
 
Posts: n/a
Default



BTW,

To have ndiswrapper load at start up, you will need to follow these steps.

Launch Yast and click on "System" then click on "/etc/sysconfig Editor" then click on the + symbol next to "system" and scroll down to "Kernel" click on the + and locate, "MODULES_LOADED_ON_BOOT" in the blank box enter "ndiswrapper" and click finish. Reboot, and you should not have to modprobe ndiswrapper to bring up the wireless, it should now load at start up.
  #6 (permalink)  
Old 16-May-2008, 21:52
Michael___
Guest
 
Posts: n/a
Default

Quote:
BTW,

To have ndiswrapper load at start up, you will need to follow these steps.

Launch Yast and click on "System" then click on "/etc/sysconfig Editor" then click on the + symbol next to "system" and scroll down to "Kernel" click on the + and locate, "MODULES_LOADED_ON_BOOT" in the blank box enter "ndiswrapper" and click finish. Reboot, and you should not have to modprobe ndiswrapper to bring up the wireless, it should now load at start up.
[/b]
Thanks, I was just wondering how to set that up. I appreciate it!
Mike
  #7 (permalink)  
Old 19-May-2008, 15:09
Michael___
Guest
 
Posts: n/a
Default

Quote:
BTW,

To have ndiswrapper load at start up, you will need to follow these steps.

Launch Yast and click on "System" then click on "/etc/sysconfig Editor" then click on the + symbol next to "system" and scroll down to "Kernel" click on the + and locate, "MODULES_LOADED_ON_BOOT" in the blank box enter "ndiswrapper" and click finish. Reboot, and you should not have to modprobe ndiswrapper to bring up the wireless, it should now load at start up.
[/b]
I want to do the same thing for the module fuse. When I go to that section it looks like if I type in fuse it will overwrite ndiswrapper. How do I set it so that both modules load at boot? Thanks so much for the help. Mike
  #8 (permalink)  
Old 19-May-2008, 15:18
Michael___
Guest
 
Posts: n/a
Default

Quote:
I want to do the same thing for the module fuse. When I go to that section it looks like if I type in fuse it will overwrite ndiswrapper. How do I set it so that both modules load at boot? Thanks so much for the help. Mike
[/b]
Nevermind... figured it out.... same line space between them. Thanks! Mike
 

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




 

Search Engine Friendly URLs by vBSEO 3.3.0 RC2