Skip to content

Instantly share code, notes, and snippets.

@xtranophilist
Last active February 3, 2022 16:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save xtranophilist/4770490 to your computer and use it in GitHub Desktop.
Save xtranophilist/4770490 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
@aavilap
Copy link

aavilap commented Jun 4, 2015

Hi

I try this Bash, actually i have problem with fedora 22 about chipset Wireless Broadcom B43#.

Thanks!!!

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