wpa_supplicant spam

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

Azure diaries: InUseSubnetCannotBeDeleted

When re-deploying a Bicep template that defines a vnet with subnets, I get the error "InUseSubnetCannotBeDeleted". It seems like ARM is trying to re-create the nested subnets, even though they haven't changed. The solution is to add a redundant reference to all subnets via the "existing" keyword. resource websiteVnet 'Microsoft.Network/virtualNetworks@2021-02-01' = { name: 'vnet${sfx}001' location: … Continue reading Azure diaries: InUseSubnetCannotBeDeleted