0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

RaspberryPi: WiFi の設定

0
Posted at

RaspberryPi をインストールして、有線接続をします。

次のコマンドで、WiFi の設定を試みます。

sudo raspi-config
``

しかし、次のエラーが出て設定できません。

```text
There was an error running option S1 Wireless LAN

解決策

/etc/wpa_supplicant/wpa_supplicant.conf
を作成します。

/etc/wpa_supplicant/wpa_supplicant.conf
country=JP
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid="YOUR_SSID"
    psk="YOUR_PASSWORD"
}

再起動

sudo reboot
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?