Skip to content

Instantly share code, notes, and snippets.

@xtealer
Forked from xtranophilist/install-b43.sh
Created May 21, 2019 16:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xtealer/82e8c8f6c3c8132443a55a65e6d574d7 to your computer and use it in GitHub Desktop.
Save xtealer/82e8c8f6c3c8132443a55a65e6d574d7 to your computer and use it in GitHub Desktop.
Install Broadcom (B43) wireless driver in Linux
#!/bin/bash
#http://wireless.kernel.org/en/users/Drivers/b43
su -
yum install b43-fwcutter wget # apt-get or whatever your package manager is
export FIRMWARE_INSTALL_DIR="/lib/firmware"
wget http://www.lwfinger.com/b43-firmware/broadcom-wl-5.100.138.tar.bz2
tar xjf broadcom-wl-5.100.138.tar.bz2
sudo b43-fwcutter -w "$FIRMWARE_INSTALL_DIR" broadcom-wl-5.100.138/linux/wl_apsta.o
echo 'modprobe b43' > /etc/sysconfig/modules/b43.modules
chmod +x /etc/sysconfig/modules/b43.modules
@xtealer
Copy link
Author

xtealer commented May 21, 2019

nice it works pretty well, couldn't find another method that actually worked until this :/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment