DEV Community

Discussion on: How I Set Up Wifi In Debian 11

Collapse
 
dvmierlo profile image
Dennis van Mierlo • Edited

Hi Jason,

Thank you very much for sharing your experience with us. It helped me a lot to activate WiFi for Debian 11 that I installed on my Macbook Pro 17" mid 2010. In my case, I needed to install the brcm80211.

These are my steps I did:
1 - Installed lshw and created an HTML hardware list like you instructed.
2 - Add the following line to my sources.list:

deb http://deb.debian.org/debian/ bullseye main contrib non-free
Enter fullscreen mode Exit fullscreen mode

3 - Installed the Broadcom firmware brcm80211:

sudo apt install firmware-brcm80211
Enter fullscreen mode Exit fullscreen mode

After installing the firmware, my WiFi was immediately active. And it works fine.

With kind regards, Dennis

Collapse
 
juniordevforlife profile image
Jason F

Great to hear, Dennis. Thank you!