LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking
User Name
Password
Linux - Wireless Networking This forum is for the discussion of wireless networking in Linux.

Notices


Reply
  Search this Thread
Old 01-30-2008, 03:43 PM   #1
Mr.Carioca
Member
 
Registered: Jan 2008
Posts: 48

Rep: Reputation: 15
Help needed with Broadcom BCM94311MCG


hey folks,

I think the title says it all, I need help on getting up my wireless card.

This is what I get on Terminal:

03:00.0 Netwrok Controller: Broadcom Corporation BCM94311MCG wlan mini-PCI (rev 01)

OS: Open S.U.S.E
Laptop: Compaq Presario V6210US.
also I'm a noob so please I need the baby directions to make this works..


Thank you.

Last edited by Mr.Carioca; 01-30-2008 at 03:50 PM.
 
Old 01-31-2008, 12:57 PM   #2
pentode
Member
 
Registered: Dec 2005
Location: Oregon
Distribution: Debian Testing
Posts: 488

Rep: Reputation: 38
This may get you pointed in the right direction, although it written around Ubuntu distro.

http://invaleed.wordpress.com/2007/1...ci-ubuntu-710/

Some Googling of your wireless card PLUS your distribution usually turns up some help.
 
Old 01-31-2008, 09:18 PM   #3
Fosforo
LQ Newbie
 
Registered: Jan 2007
Distribution: Slackware 11.0
Posts: 22

Rep: Reputation: 16
I would also like some help with this. I have the same card, and it's working with ndiswrapper just fine, but I want to have the option of monitor mode. I was hoping I could get it working with b43 or bvm43xx. Does anyone know the details on how to do this, or if it's possible?
 
Old 02-01-2008, 10:06 AM   #4
Mr.Carioca
Member
 
Registered: Jan 2008
Posts: 48

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Fosforo View Post
I would also like some help with this. I have the same card, and it's working with ndiswrapper just fine, but I want to have the option of monitor mode. I was hoping I could get it working with b43 or bvm43xx. Does anyone know the details on how to do this, or if it's possible?
Mind telling me how?
 
Old 02-01-2008, 12:59 PM   #5
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422
The native drivers are pretty easy to use, provided that you have the right kernel. If you already have b43 or bcm43xx available as a module, all you have to do is use fwcutter to created firmware file and then install them in /lib/firmware. The load the b43/bcm43xx module and you should be good to go.

Check out the b43 site for details on what files to use to create the firmware.

Now with that said, b43/bcm43xx don't work with all broadcom chipsets, and are limited to 802.11b speeds under all circumstances, so ndiswrapper may be a good choice depending upon your needs and chipset.

Last edited by Hangdog42; 02-01-2008 at 01:00 PM.
 
Old 02-01-2008, 06:50 PM   #6
Mr.Carioca
Member
 
Registered: Jan 2008
Posts: 48

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Hangdog42 View Post
The native drivers are pretty easy to use, provided that you have the right kernel. If you already have b43 or bcm43xx available as a module, all you have to do is use fwcutter to created firmware file and then install them in /lib/firmware. The load the b43/bcm43xx module and you should be good to go.

Check out the b43 site for details on what files to use to create the firmware.

Now with that said, b43/bcm43xx don't work with all broadcom chipsets, and are limited to 802.11b speeds under all circumstances, so ndiswrapper may be a good choice depending upon your needs and chipset.
Tried, my chipset doesn't work with bcm43xx.

wow, linux question is much better then Open SUSE forum itself, I have one thread here and another one in SUSE forum and I still didn't get any comments..

Any other ideas?
 
Old 02-01-2008, 10:42 PM   #7
silverstormboy
Member
 
Registered: Apr 2003
Location: Singapore
Distribution: Ubuntu 7.10 Gutsy
Posts: 32

Rep: Reputation: 15
Hi ,

I used the same wireless card as your on my acer laptop 4620z ( using Ubuntu 7.10 Gutsy) and i followed instructions on this link:

http://invaleed.wordpress.com/2007/1...ci-ubuntu-710/

Here is the summary:

1)you must uninstall ndiswrapper & bcm43xx-fwcutter
sudo apt-get remove ndiswrapper-common ndiswrapper-utils-1.9
sudo apt-get remove bcm43xx-fwcutter

2)Add bcm43xx to the /etc/modprobe.d/blacklist file
sudo vim /etc/modprobe.d/blacklist
add this line “blacklist bcm43xx” (without “”)

3)Reboot
Download driver for BCM94311MCG wlan mini-PCI here: http://www.stosha.net/WLANBroadcom.tar.gz
http://stosha.stylet-software.com/WLANBroadcom.tar.gz

tar -xzvf WLANBroadcom.tar.gz

4)move the folder WLANBroadcom to your home directory
mv WLANBroadcom/ /home/yourname/

5)Install ndiswrapper from source :
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install linux-headers-`uname -r`
sudo ln -s /usr/src/linux-`uname -r` /lib/modules/`uname -r`/build

mkdir -p ~/bcm43xx/ndiswrapper

cd ~/bcm43xx/ndiswrapper

sudo wget http://downloads.sourceforge.net/ndi...er-1.49.tar.gz

tar xvzf ndiswrapper-1.49.tar.gz

cd ndiswrapper-1.49

make distclean

make

sudo make install

6)Install windows driver (BCM94311MCG wlan mini-PCI) with ndiswrapper

cd /home/yourname/WLANBroadcom/

sudo ndiswrapper -i bcmwl5.inf

ndiswrapper -l

sudo vim /etc/modules
add this line “ndiswrapper” (without “”)

sudo modprobe ndiswrapper

sudo ndiswrapper -m

7)Reboot


Since you are using Open Suse, maybe you want to try to follow below link as well, but get the broadcom driver first from the above link.
http://ubuntuforums.org/showthread.php?t=112526


Hope it works for you.

Cheers.
 
Old 02-01-2008, 10:50 PM   #8
Mr.Carioca
Member
 
Registered: Jan 2008
Posts: 48

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by silverstormboy View Post
Hi ,

I used the same wireless card as your on my acer laptop 4620z ( using Ubuntu 7.10 Gutsy) and i followed instructions on this link:

http://invaleed.wordpress.com/2007/1...ci-ubuntu-710/

Here is the summary:

1)you must uninstall ndiswrapper & bcm43xx-fwcutter
sudo apt-get remove ndiswrapper-common ndiswrapper-utils-1.9
sudo apt-get remove bcm43xx-fwcutter

2)Add bcm43xx to the /etc/modprobe.d/blacklist file
sudo vim /etc/modprobe.d/blacklist
add this line “blacklist bcm43xx” (without “”)

3)Reboot
Download driver for BCM94311MCG wlan mini-PCI here: http://www.stosha.net/WLANBroadcom.tar.gz
http://stosha.stylet-software.com/WLANBroadcom.tar.gz

tar -xzvf WLANBroadcom.tar.gz

4)move the folder WLANBroadcom to your home directory
mv WLANBroadcom/ /home/yourname/

5)Install ndiswrapper from source :
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install linux-headers-`uname -r`
sudo ln -s /usr/src/linux-`uname -r` /lib/modules/`uname -r`/build

mkdir -p ~/bcm43xx/ndiswrapper

cd ~/bcm43xx/ndiswrapper

sudo wget http://downloads.sourceforge.net/ndi...er-1.49.tar.gz

tar xvzf ndiswrapper-1.49.tar.gz

cd ndiswrapper-1.49

make distclean

make

sudo make install

6)Install windows driver (BCM94311MCG wlan mini-PCI) with ndiswrapper

cd /home/yourname/WLANBroadcom/

sudo ndiswrapper -i bcmwl5.inf

ndiswrapper -l

sudo vim /etc/modules
add this line “ndiswrapper” (without “”)

sudo modprobe ndiswrapper

sudo ndiswrapper -m

7)Reboot


Since you are using Open Suse, maybe you want to try to follow below link as well, but get the broadcom driver first from the above link.
http://ubuntuforums.org/showthread.php?t=112526


Hope it works for you.

Cheers.
I'm using SUSE, but SUSE is just giving me a problem out of the box.. I might end up going for Ubuntu .
 
Old 02-01-2008, 10:57 PM   #9
silverstormboy
Member
 
Registered: Apr 2003
Location: Singapore
Distribution: Ubuntu 7.10 Gutsy
Posts: 32

Rep: Reputation: 15
Hi, dont give up yet.

The guy said it should work with any distribution, no harm trying
 
Old 02-01-2008, 11:33 PM   #10
Mr.Carioca
Member
 
Registered: Jan 2008
Posts: 48

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by silverstormboy View Post
Hi, dont give up yet.

The guy said it should work with any distribution, no harm trying
Tried on following everything, still no luck, I'm a complete Linux noobie, Ubuntu seems to have a larger community support against SUSE
 
Old 02-02-2008, 07:23 AM   #11
Hangdog42
LQ Veteran
 
Registered: Feb 2003
Location: Maryland
Distribution: Slackware
Posts: 7,803
Blog Entries: 1

Rep: Reputation: 422Reputation: 422Reputation: 422Reputation: 422Reputation: 422
Quote:
Originally Posted by Mr.Carioca View Post
Tried on following everything, still no luck, I'm a complete Linux noobie, Ubuntu seems to have a larger community support against SUSE

To be honest, unless you post some details, we can't help. "Still no luck" just doesn't cut it. Wireless support doesn't vary much between distros, so hoping that Ubuntu will be a magic cure for your wireless troubles is a false hope. However, if you are generally unhappy with Suse, then switching is probably a decent idea.
 
Old 02-02-2008, 09:20 AM   #12
Larry Webb
LQ Veteran
 
Registered: Jul 2006
Location: Crystal Beach, Texas
Distribution: Suse for mail +
Posts: 5,100
Blog Entries: 7

Rep: Reputation: 229Reputation: 229Reputation: 229
If you are using Suse 10.2 or better you need to try and install ndis wrapper by YaST. If you want to use terminal (konsole) "su" will get you to root not sudo. Let me know which version of Suse you are using and I will try and help you more.
 
Old 02-02-2008, 03:59 PM   #13
Mr.Carioca
Member
 
Registered: Jan 2008
Posts: 48

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Larry Webb View Post
If you are using Suse 10.2 or better you need to try and install ndis wrapper by YaST. If you want to use terminal (konsole) "su" will get you to root not sudo. Let me know which version of Suse you are using and I will try and help you more.
I'm using SUSE 10.3
I tried on using this tutorial: http://www.suseblog.com/?p=279

but when I get to the part of "If you see something like that, you are golden." I don't, it says that bcml5 is already installed.

So, I click on the eth link, the little cable next to the clock, and it only shows the eth0 which is connected but nothing for wireless.

I tried on continue with the tutorial, but many parts such as "lspci -v" doesn't work on terminal - rmmod bcm43xx - or trying to acess /etc/modprobe.conf.local under terminal, everything that I just listed doesn't work under terminal (yes I also tried with "su" power and nothing).

I open YAST > Hardware... > etc.. I click on configure the eth01 (which is the wlan) under Hardware tab, I type "ndiswrapper" on Module Name, everything goes fine, then I go for the "network screen" which asks me information like "WPA etc." I can't remember much then after I fill every info about the network I click on "next" It updates everything then I'm back to the screen of YAST, but with no wireless connection, yea I tried on restarting but still doesn't work.

but bcm43xx was already unnistalled and ndiswrapper was installed, just how the guide on that website says so.
 
Old 02-02-2008, 04:32 PM   #14
Larry Webb
LQ Veteran
 
Registered: Jul 2006
Location: Crystal Beach, Texas
Distribution: Suse for mail +
Posts: 5,100
Blog Entries: 7

Rep: Reputation: 229Reputation: 229Reputation: 229
Did you download the windows driver?
 
Old 02-02-2008, 06:22 PM   #15
Mr.Carioca
Member
 
Registered: Jan 2008
Posts: 48

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Larry Webb View Post
Did you download the windows driver?
Yes, I did download the window s driver.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Cant set essid on bcm94311MCG with ndiswrapper count_D Linux - Wireless Networking 1 12-09-2007 01:48 PM
BCM94311MCG in Monitor Mode yo_jamo Linux - Wireless Networking 2 11-29-2007 08:18 PM
Broadcom BCM4212 Driver needed shwagpo Linux - Hardware 1 08-13-2007 11:10 AM
Broadcom wireless in kernel 2.6.17 - configuration help needed ku4tp SUSE / openSUSE 1 09-18-2006 12:01 PM
Broadcom driver installation help needed fredrikis Linux - Newbie 3 04-10-2006 06:49 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking

All times are GMT -5. The time now is 08:04 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration