Ubuntu 24.04 is spamming several of these entries in syslog: wpa_supplicant[1736]: wlp3s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-62 noise=9999 txrate=390000 The solution is to raise the wpa_supplicant logging level and restart networking: mkdir -p /etc/systemd/system/wpa_supplicant.service.d/ vi /etc/systemd/system/wpa_supplicant.service.d/log.conf # add these lines [Service] LogLevelMax=4 # save & quit systemctl daemon-reload systemctl restart wpa_supplicant.service systemctl restart NetworkManager.service
Tag: wifi
Linux picking the best access point in a WLAN with repeaters
In many larger WLAN setups you'll find repeaters or extenders which spread the WLAN to farther places on the floor. Often they are set up in such a way that they use the same WLAN name (SSID) and password. In that case the WLAN hardware on your laptop will pick the best access point and … Continue reading Linux picking the best access point in a WLAN with repeaters