sidux.com
Menu

News

Give back
Last 3 Contributions
16-11-2008 10.00
02-11-2008 20.00
31-10-2008 20.00

Donate


Sponsor
hetzner.de

Languages
Preferred language:



Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
jazzmans
Post subject: Need wireless broadcom card working  PostPosted: Dec 05, 2007 - 10:05 PM



Joined: Jun 13, 2007
Posts: 19

Status: Offline
lspci ;03:00.0 Network controller: Broadcom Corporation BCM94311MCG wlan mini-PCI (rev 01)

uname -r ;2.6.23.9-slh-smp-1

iwconfig; lo no wireless extensions.

eth0 no wireless extensions.

wmaster0 no wireless extensions.

wlan0 IEEE 802.11g ESSID:""
Mode:Managed Frequency:2.412 GHz Access Point: Not-Associated
Tx-Power=27 dBm
Retry min limit:7 RTS thr:off Fragment thr=2352 B
Encryption key:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0


iwlist scan

lo Interface doesn't support scanning.

eth0 Interface doesn't support scanning.

wmaster0 Interface doesn't support scanning.

wlan0 No scan results


bcm43xx-fwcutter and b43-fwcutter are installed and both downloaded firmware from broadcoms website.

ndiswrapper is uninstalled and purged.

AFAIK, no other wireless modules are installed.

please help me!

I did have this wireless card working under sidux a number of kernels back, but have had no luck since.

Feel free with any questions.

jaz
 
 View user's profile Send private message  
Reply with quote Back to top
op4latino
Post subject: RE: Need wireless broadcom card working  PostPosted: Dec 06, 2007 - 04:06 AM



Joined: Dec 02, 2006
Posts: 1034
Location: East Coast
Status: Offline
please post output of

lsmod|grep b43

can help a bit, also post /etc/network/interfaces

to make sure the firmware are there:

ls /lib/firmware/b43*


and my favorite:

cat /etc/udev/rules.d/z25_persistent-net.rules
 
 View user's profile Send private message  
Reply with quote Back to top
jazzmans
Post subject: RE: Need wireless broadcom card working  PostPosted: Dec 06, 2007 - 08:01 AM



Joined: Jun 13, 2007
Posts: 19

Status: Offline
lsmod b43;
b43 120736 0
rfkill 8848 1 b43
lsmod ;
mac80211 138252 1 b43
led_class 6148 1 b43
input_polldev 6024 1 b43
ssb 35460 1 b43
pcmcia 41644 2 b43,ssb
pcmcia_core 41368 2 b43,pcmcia


ls /lib/firmware/b43;

/lib/firmware/b43:
a0g0bsinitvals4.fw a0g1initvals13.fw b0g0initvals4.fw ucode11.fw
a0g0bsinitvals5.fw a0g1initvals5.fw b0g0initvals5.fw ucode13.fw
a0g0initvals4.fw b0g0bsinitvals13.fw lp0bsinitvals13.fw ucode4.fw
a0g0initvals5.fw b0g0bsinitvals4.fw lp0initvals13.fw ucode5.fw
a0g1bsinitvals13.fw b0g0bsinitvals5.fw pcm4.fw
a0g1bsinitvals5.fw b0g0initvals13.fw pcm5.fw

/lib/firmware/b43legacy:
a0g0bsinitvals2.fw a0g1bsinitvals5.fw b0g0initvals2.fw ucode11.fw
a0g0bsinitvals5.fw a0g1initvals5.fw b0g0initvals5.fw ucode2.fw
a0g0initvals2.fw b0g0bsinitvals2.fw pcm4.fw ucode4.fw
a0g0initvals5.fw b0g0bsinitvals5.fw pcm5.fw ucode5.fw

/etc/network/interfaces;

# /etc/network/interfaces -- configuration file for ifup(Cool, ifdown(Cool

# The loopback interface
# automatically added when upgrading
auto lo eth2 eth0
iface lo inet loopback

iface eth2 inet dhcp

allow-hotplug eth0
iface wlan0 inet dhcp
wpa-psk a2szobegevr5t616
wpa-ssid linksys_SES_16014

#allow-hotplug wlan0_rename
#iface wlan0_rename inet dhcp

iface eth0 inet dhcp


cat /etc/udev/rules.d..'

# This file was automatically generated by the /lib/udev/write_net_rules
# program run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single line.

# PCI device 0x10de:0x0269 (forcedeth)
SUBSYSTEM=="net", DRIVERS=="?*", ATTR{address}=="00:16:36:e8:d4:26", NAME="eth0"

# PCI device 0x14e4:0x4311 (b43)
SUBSYSTEM=="net", DRIVERS=="?*", ATTR{address}=="00:1a:73:1b:63:80", ATTR{type}=="1", NAME="wlan0"



thanks in advance for any help here op4latino.

jaz
 
 View user's profile Send private message  
Reply with quote Back to top
kelmo
Post subject: Re: RE: Need wireless broadcom card working  PostPosted: Dec 06, 2007 - 08:22 AM



Joined: Dec 19, 2006
Posts: 1029

Status: Offline
jazzmans wrote:

# /etc/network/interfaces -- configuration file for ifup(Cool, ifdown(Cool

# The loopback interface
# automatically added when upgrading
auto lo eth2 eth0
iface lo inet loopback

iface eth2 inet dhcp

allow-hotplug eth0
iface wlan0 inet dhcp
wpa-psk a2szobegevr5t616
wpa-ssid linksys_SES_16014

#allow-hotplug wlan0_rename
#iface wlan0_rename inet dhcp

iface eth0 inet dhcp


This is wrong, you have:

Code:

allow-hotplug eth0
iface wlan0 inet dhcp
   wpa-psk a2szobegevr5t616
   wpa-ssid linksys_SES_16014


Note that allow-hotplug line has eth0, and the configuration below it is for wlan0.

Then later you have:

Code:

iface eth0 inet dhcp


Which means your upping eth0, which maybe isn't what you really want.

Try removing all that cruft and using:

Code:

allow-hotplug wlan0
iface wlan0 inet dhcp
   wpa-psk a2szobegevr5t616
   wpa-ssid linksys_SES_16014
 
 View user's profile Send private message  
Reply with quote Back to top
jazzmans
Post subject: RE: Re: RE: Need wireless broadcom card working  PostPosted: Dec 08, 2007 - 10:16 PM



Joined: Jun 13, 2007
Posts: 19

Status: Offline
I edited the interfaces file, and using what you wrote, it works just fine.

Thanks kelmo, and now I have a hard copy of all this, so next time, hopefully I can get the bastard working immediately.

jaz
 
 View user's profile Send private message  
Reply with quote Back to top
jazzmans
Post subject: RE: Re: RE: Need wireless broadcom card working  PostPosted: Apr 11, 2008 - 04:30 PM



Joined: Jun 13, 2007
Posts: 19

Status: Offline
Hey all, the above tip works fine, but on every reboot I have to re-add the line

allow-hotplug wlan0.

any ideas why this is? It's a pretty minor problem, I'd just li know why.

I love sidux.


I'm running it on my main workstation now, and it kicks ass.

jaz
 
 View user's profile Send private message  
Reply with quote Back to top
Display posts from previous:     
Jump to:  
All times are GMT
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Powered by PNphpBB2 © 2003-2007 The PNphpBB Group
Credits
 
Logos and trademarks are the property of their respective owners, comments are property of their posters, the rest is © 2006-2008 by sidux e.V., 10407 Berlin, Kniprodestr. 104. sidux e.V. is a Berlin, Germany based non-profit foundation. Consult Impressum and Legal Terms for details. sidux™ is Free Software released under the GNU/GPL license and other compatible licenses.
powered by Zikula & Zafenio