Raspberry Pi を別の Wi-Fi に切り替える
新しい Wi-Fi ルーターを導入したので、Raspberry Pi の Wi-Fi の接続先を再設定する必要があった。すなわち、現在 Wi-FI に接続されている状態で、新たに別の SSID に変更したい。
SSH で接続した Mac から設定する方法は以下のようになる。
(1)Mac の Terminal で Raspberry Pi にログインする。
(2)以下の2つのコマンドを実行する。(ssid) と (passphrase) は新しい接続先に変更する。
$ sudo sh -c 'wpa_passphrase (ssid) (passphrase) | grep -v "#psk=" >> /etc/wpa_supplicant/wpa_supplicant.conf'
$ sudo wpa_cli reconfigure
(3)以下のコマンドを実行し、新しい接続先に接続されたことを確認する。
$ iwgetid
参考:
Raspberry Pi Zero Wの無線LANをディスプレイやキーボードなしで設定する(有線LAN利用) – Qiita
https://qiita.com/mascii/items/a25af25da8bfd3fd2a71
networking – How do I find out the name of the SSID I’m connected to from the command line? – Ask Ubuntu
https://askubuntu.com/questions/117065/how-do-i-find-out-the-name-of-the-ssid-im-connected-to-from-the-command-line
Recent Posts
Archives