Post

Wireless Connection Using Broadcom BCM4313 (Archlinux)

Get wifi working with a Broadcom BCM4313 on Arch Linux

Wireless Connection Using Broadcom BCM4313 (Archlinux)

Check if you realy have a BCM4313

1
lspci -vnn -d 14e4:

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

1
sudo pacman -S broadcom_wl_dkms wpa_supplicant linux-headers

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

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

To do it add these line to the file.

1
2
3
4
5
blacklist bcma
blacklist b43
blacklist b43legacy
blacklist brcm80211
blacklist ssb

Finally to start the driver you just need to run.

1
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/

This post is licensed under CC BY 4.0 by the author.