60008520a188
Update
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Fri, 09 Aug 2024 10:37:33 -0400 |
parents | 8b42d86ce8fd |
children | 6654218b858c |
branches/tags | (none) |
files | README.markdown |
Changes
--- a/README.markdown Mon Jul 22 10:04:36 2024 -0400 +++ b/README.markdown Fri Aug 09 10:37:33 2024 -0400 @@ -801,3 +801,18 @@ the calculator is just a useless generic one so it took me a while to track *this* down, but it turns out I had made them the wrong resolution (440x240 instead of 400x240). Once I fixed *that* I finally had my custom `OFFIMG`. + +## 2024-08-09 + +Rebooted my laptop for the first time since last November and the wifi stopped +working, fucking Linux. Spent 30 minutes dicking around trying to debug stuff +by searching on my phone until I did what I should have done in the past, which +was look at my notes, which pointed me at the actual problem: `wpa_supplicant`. +Last November I had to disable it to get the wifi working, but now apparently +I needed to *enable* it for `NetworkManager` to work: + + sudo systemctl unmask wpa_supplicant + sudo systemctl enable wpa_supplicant + sudo systemctl start wpa_supplicant + sudo systemctl status wpa_supplicant + sudo systemctl restart NetworkManager