You are not logged in.
[jing@Echo ~]$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:24:E8:BB:59:33
inet addr:192.168.1.10 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::224:e8ff:febb:5933/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:3769 errors:0 dropped:0 overruns:0 frame:0
TX packets:1072 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:875615 (855.0 Kb) TX bytes:163195 (159.3 Kb)
Interrupt:31
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:400 (400.0 b) TX bytes:400 (400.0 b)
[jing@Echo ~]$ iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
eth1 IEEE 802.11 Nickname:""
Access Point: Not-Associated
Link Quality:5 Signal level:0 Noise level:0
Rx invalid nwid:0 invalid crypt:0 invalid misc:0
[jing@Echo ~]$ lspci | grep BCM43
0e:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g (rev 01)
[jing@Echo ~]$ cat /etc/wicd/manager-settings.conf
[Settings]
wireless_interface = wlan0
pref_width = 450
window_width = 530
prefer_wired = False
flush_tool = 0
backend = external
global_dns_dom = 192.168.1.1
always_show_wired_interface = True
window_height = 451
global_dns_1 = 192.168.1.1
global_dns_2 = None
global_dns_3 = None
use_global_dns = True
should_verify_ap = 0
netprop_width = 412
link_detect_tool = 0
main_height = 451
dhcp_client = 0
sudo_app = 0
wired_connect_mode = 1
netprop_height = 600
debug_mode = 0
pref_height = 384
wired_interface = eth0
signal_display_type = 0
global_search_dom = None
auto_reconnect = True
main_width = 530
wpa_driver = ralink_legacy
[img]file:///home/jing/2010-03-19-205306_455x408_scrot.png[/img]
i use xfce4 and openbox , i can connect to the wired network,but not wireless.
i have followed the BCM4312 wiki ,but it doesn't work ,help.
Offline
[jing@Echo ~]$ lspci -vnn | grep 14e4
0e:00.0 Network controller [0280]: Broadcom Corporation BCM4312 802.11b/g [14e4:4315] (rev 01)
Offline
What driver are you using? You have two choices: 'b43', which is incorporated in the kernel and 'broadcom-wl', which is in AUR.
You should explicitly choose 1 and blacklist the other (unless you're using b43 and don't have broadcom-wl installed).
Next should be to bring the device 'eth1' up and scan for networks.
Offline
thinks. i found there is something wrong with my wicd config. the wireless interface should be "eth1" ,like you said ,not wlan0.Now,i it can scan the wireless networks, but cann't connect it.
connection failed:Could not contract the wireless access point.Offline
[image]/home/jing/scrot.png[/image]
file:///home/jing/scrot.png
Last edited by ringfin (2010-03-22 13:25:10)
Offline
my rc.conf
MOD_AUTOLOAD="yes"
#MOD_BLACKLIST=() #deprecated
MODULES=(snd-usb-audio !floppy !fd0 !net-pf-10 !snd_pcsp !pcspkr loop !lib80211 lib80211_crypt_tkip wl !b43 !ssb )DAEMONS=(hal gamin syslog-ng !network !dhcdbd !networkmanager wicd @alsa @syndaemon)Offline
Here my Dell Notebook:
lspci -vnn | grep 14e4
Broadcom BCM4312 802.11 ab/g
/etc/rc.conf
Modules=(lib80211 wl !b43 !ssb ...)
Daemons=(hal networkmanager ...)
Using Arch 64 and openbox
~/.config/openbox/autostart.sh
cnetworkmanager --connect=router-ssid --wpa-pass="router_passphrase"
Using broadcom-wl and cnetworkmanager from AUR. Router Linksys wrt.
Tried out with Wicd but had no luck so I gave up wicd. Maybe I didn't figure out on how to configure wicd.
System is working fine.
CSAT
Arch User
Offline
still need help. i do not want to give up. anyone know about it ?
Offline
The 4312 is native to recent kernels. I assume you are are using 2.6.32 (Check with uname -a )
The wiki at http://wiki.archlinux.org/index.php/Wireless_Setup is a little out of date. It provides a good overview, but won't quite get you there [mental note to self, maybe a wiki update would be a good weekend project]
The kernel mode driver does need firmware for the 4312.
If you have not installed the firmware, you will see lines like these in /var/log/everything.log:
Mar 22 13:50:31 odin kernel: b43 ssb0:0: firmware: requesting b43-open/ucode15.fw
Mar 22 13:50:31 odin kernel: b43-phy0 ERROR: Firmware file "b43/ucode15.fw" not found
Mar 22 13:50:31 odin kernel: b43-phy0 ERROR: Firmware file "b43-open/ucode15.fw" not found
Mar 22 13:50:31 odin kernel: b43-phy0 ERROR: You must go to http://wireless.kernel.org/en/users/Drivers/b43#devicOne installs that using b43-fwcutter. Note that the version in core is not current and will not process the firmware file you will need. Grab the TARBELL from the AUR. Unpack, untar, pkgbuild and pacman -U that version.
grab and untar the firmware from wget http://downloads.openwrt.org/sourc … .5.tar.bz2
Then, use b43-fwcutter to install the firmware to /lib/firmware. Detailed instructions are here:
http://wireless.kernel.org/en/users/Drivers/b43
Reload the b43 module (or just reboot) and check that the firmware is installed. Look for lines like the following in /var/log/everything.log
Mar 22 14:28:02 odin kernel: b43 ssb0:0: firmware: requesting b43/lp0initvals15.fw
Mar 22 14:28:02 odin kernel: b43 ssb0:0: firmware: requesting b43/lp0bsinitvals15.fw
Mar 22 14:28:02 odin kernel: b43-phy0: Loading firmware version 478.104 (2008-07-01 00:50:23)
Mar 22 14:29:35 odin kernel: b43-phy0: Loading firmware version 478.104 (2008-07-01 00:50:23)
Mar 22 14:29:40 odin kernel: b43-phy0: Loading firmware version 478.104 (2008-07-01 00:50:23)try sudo ifconfig wlan0 up
then try iwlist scan
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
[image]/home/jing/scrot.png[/image]
file:///home/jing/scrot.png
Do you realize we can't see those? You need to upload them to a file hosting site like http://tinypic.com/ (that's my favorite one). Also, might help to post the output of dmesg. That sometimes gives useful info on what's going on with Broadcom cards when they don't work.
Last edited by doorknob60 (2010-03-23 17:33:56)
Offline