Results 11 to 20 of 25
So after i installed driver i noticed it went missing so i followed these steps on archWiki
https://wiki.archlinux.org/index.php...ss#broadcom-wl
Code:
# rmmod b43
Code:
# rmmod ssb
Code:
# modprobe wl
...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-16-2011 #11Linux Newbie
- Join Date
- May 2009
- Location
- Kitchener, Ontario, Canada
- Posts
- 191
So after i installed driver i noticed it went missing so i followed these steps on archWiki
https://wiki.archlinux.org/index.php...ss#broadcom-wl
Code:# rmmod b43
Code:# rmmod ssb
Code:# modprobe wl
I added wl to modules in rc.configCode:# modprobe lib80211_crypt_tkip
blacklisted these modulesCode:MODULES=(wl)
Created the new file /etc/pm/sleep.d/brcm.shCode:blacklist b43 blacklist ssb
made the file executableCode:#!/bin/bash # Simple Bash script to fix resume from suspend issues... # Place this script in /etc/pm/sleep.d/ # then chmod +x /etc/pm/sleep.d/brcm.sh case $1 in hibernate) /sbin/modprobe -r brcm80211 ;; suspend) /sbin/modprobe -r brcm80211 ;; resume) /sbin/modprobe brcm80211 ;; thaw) /sbin/modprobe brcm80211 ;; esac
Code:chmod +x /etc/pm/sleep.d/brcm.sh
When i type ifconfig "wlan0' is missing still.
Any ideas
- 10-16-2011 #12
First thing I can think of... did you also add lib80211_crypt_tkip to your rc.conf?
Also...
Have you tried other drivers? Perhaps the b43/b43legacy?
Originally Posted by Archwiki Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 10-16-2011 #13Linux Newbie
- Join Date
- May 2009
- Location
- Kitchener, Ontario, Canada
- Posts
- 191
i havent added lib80211_crypt_tkip to rc.conf
But the driver i built was the b43legacy since my card is 4311
- 10-16-2011 #14
According to the steps that you outlined, you removed the b43 driver ( # rmmod b43 ) and loaded the broadcom-wl # modprobe wl ).
Am I missing something?Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 10-16-2011 #15Linux Newbie
- Join Date
- May 2009
- Location
- Kitchener, Ontario, Canada
- Posts
- 191
oh sorry i thought you meant me manually add it
i entered everything i typed in my previous postLast edited by donaldfarkas; 10-16-2011 at 12:54 PM.
- 10-16-2011 #16Linux Newbie
- Join Date
- May 2009
- Location
- Kitchener, Ontario, Canada
- Posts
- 191
i installed AUR (en) - b43-fwcutter-git and AUR (en) - b43-firmware from AUR when i sudo iwlist wlan0 scan i get the msg "wlan0 No scan results"
- 10-16-2011 #17
Is there a button or several buttons to turn on the Wireless card? This is a laptop, right?
Try this command and post the results.
See this link for more info on the rfkill command.Code:rfkill list
rfkill - Linux WirelessI do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
I'd rather be lost at the lake than found at home.
- 10-16-2011 #18Linux Newbie
- Join Date
- May 2009
- Location
- Kitchener, Ontario, Canada
- Posts
- 191
I tried that already :S
Paste #493517 | LodgeIt!
- 10-16-2011 #19
Could you, once more for us, post the output of lsmod and ifconfig -a?
By any chance, is your wireless network set to not broadcast it's SSID?Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 10-16-2011 #20Linux Newbie
- Join Date
- May 2009
- Location
- Kitchener, Ontario, Canada
- Posts
- 191
FINALY GOT IT TO WORK!!!!!!!!!!!!!
ignore first page of this thread completely
Fresh install of arch + Openbox
(I assume you have set up sudo while installing archlinux)
AUR (en) - b43-fwcutter-gitCode:sudo pacman -S base-devel
download tarball and PKGBUILD
navigate to the folder you downloaded it to
typeonce it installs you can delete the 2 things you downloaded so their is no confusionCode:makepkg -sci
AUR (en) - b43-firmware
download tarball and PKGBUILD
navigate to the folder you downloaded it to
typeonce it installs you can delete the 2 things you downloaded so their is no confusionCode:makepkg -sci
Code:sudo pacman -S wicd wicd-gtk
Stop the other network managers if its a fresh install by following guide you will have "network".Open your /etc/rc.conf go to the bottom where it says DAEMONSCode:rc.d stop network
Code:sudo nano /etc/rc.conf
the ! = disablesCode:DAEMONS=(dbus !network wicd ...)
also add wicd to DAEMONS
typetypeCode:rc.d start wicd
typeCode:sudo ifconfig wlan0 up
since its a fresh install and you dont have a notification areaCode:iwlist wlan0 scan
typeconnect to your perferred networkCode:wicd-client -n
my first little guide i know its a bit cluttered let me know if there is anything i can improve to make it more readableLast edited by donaldfarkas; 10-16-2011 at 09:57 PM.


Reply With Quote
