may be related to Install Yunohost on a raspberry without an ethernet cable
With a fresh install on Raspberry 4 (using the prebuilt). I want to connect to the internet over wlan0 rather than eth0. Theoretically it should work like that : https://www.raspberrypi.com/documentation/computers/configuration.html#wireless-networking-command-line
but I found out that nmcli
is not installed. It seems that wpa_supplicant is installed.
There was no /etc/wpa_supplicant/wpa_supplicant.conf
so I created it:
country=fr
update_config=1
ctrl_interface=/var/run/wpa_supplicant
network={
scan_ssid=1
psk="password"
ssid="ssid"
}
then I run wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf
which gives
Successfully initialized wpa_supplicant
nl80211: kernel reports: Registration to specific type not supported
I’ve found this issue, could it be related ? [Pi 4] Other machines cannot connect to wireless AP when ieee80211w=1 · Issue #3619 · raspberrypi/linux · GitHub