blob: 48f319953945aa9d063e8b7e7ac88bcaa120c2a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Getting WLAN to work on the archlinux install medium on a MacBook Pro 10x
It's 2026 and you want to install archlinux on your 10 years old MacBook Pro.
----
This is what worked for me:
## Reading material
=> https://bbs.archlinux.org/viewtopic.php?id=274369
=> https://wiki.archlinux.org/title/Broadcom_wireless#Driver_selection
## Commands to run on your MacBook with the install iso running:
* if you have a german keyboard layout do `loadkeys de-latin1` ("-" = "ß")
* run `rm /etc/modprobe.d/broadcom-wl.conf`
* run `lspci -vnn -d 14e4:`
* run `rmmod ...` replace "..." with the kernel modules listed for your Network Controller. In my case it was "bcma, wl". The kernel module "bcma" depends on "b43", so I had to `rmmod b43` as well.
* run `modprobe wl`
* run `iwctl station list`. be happy that it now lists "wlan0" as available station
* potentially wait a bit to get an IP address assigned. Took a couple minutes for me (around 2min)
|