uConsoleアップデート後のwifiが消える問題

最近たまたまuConsoleを uConsole_CM4_v1.3g_64bit.img.7zからマイクロSDカードに書き込んで最初のアップデートをしたところ、wifi設定がGUIでできなくなっので、その対処法を書いておきます。どなたかのお役に立てれば。

●wifi
#(1)まずはNetwork Managerを停止
sudo systemctl stop NetworkManager
sudo systemctl disable NetworkManager
#(2)dhcpcに制御を移す
sudo systemctl enable dhcpcd.service
sudo systemctl start dhcpcd.service
あとは画面上のパネルを右クリックして「パネルのアイテムの追加・削除」→「追加(A)」→「Wireless & Wired Network」を選択して「Add」

network-managerをインストール(sudo apt install network-manager)して使うと、なぜかiPhone15でのテザリングができなかったのでdhcpcdを使う必要がありました。これだとiPhone15でも問題なく接続できたので…

Here is the tanslation from ChatGPT


I recently happened to write the uConsole_CM4_v1.3g_64bit.img.7z image to a microSD card and performed the initial update, but after that, the Wi-Fi settings could no longer be configured via the GUI. So I’m sharing the solution here in case it helps someone.

● Wi-Fi Setup
Run the following commands:

sudo systemctl enable dhcpcd.service
sudo systemctl start dhcpcd.service

Then, right-click on the top panel and select “Panel Preferences” → “Items” → click “Add” → select “Wireless & Wired Network” and click “Add”.

I tried using network-manager (sudo apt install network-manager), but for some reason, I couldn’t tether with my iPhone 15 using that method. With dhcpcd, however, the connection worked perfectly with the iPhone 15.