Skip to content

Instantly share code, notes, and snippets.

@marques576
Last active January 11, 2024 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save marques576/9dd23c360e7612c39a4c655142118dd4 to your computer and use it in GitHub Desktop.
Save marques576/9dd23c360e7612c39a4c655142118dd4 to your computer and use it in GitHub Desktop.
WIFI Using Broadcom BCM4313 (Archlinux)

Wireless Connection Using Broadcom BCM4313 (Archlinux)

Check if you realy have a BCM4313

lspci -vnn -d 14e4:

If you have one listed install these packages (obs: if you have the lts kernel install linux-lts-headers instead).

sudo pacman -S broadcom_wl_dkms wpa_supplicant linux-headers

Then you need to blacklist the drivers that come in the kernel.

sudo nano /etc/modprobe.d/blacklist.conf

To do it add these line to the file.

blacklist bcma
blacklist b43
blacklist b43legacy
blacklist brcm80211
blacklist ssb

Finally to start the driver you just need to run.

sudo modprobe wl

And your wifi card should start working in Arch Linux

Forked from https://gnix0.wordpress.com/2018/03/29/wireless-connection-using-broadcom-bcm4313-archlinux/

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