LoginSignup
8
7

More than 5 years have passed since last update.

[Raspberry Pi 3B+]wlan0がifconfigで見えない時の対処法

Posted at

出会った症状

raspberrpi3B+でwifiがつながらない問題が発生しました。
ifconfigで見てもwlan0が存在せず、今までのラズパイとは違った現象が発生していました。

開発環境

Raspberry Pi 3B+
Linux raspberrypi 4.14.62-v7+

解決方法

raspbianのOS側でwifiの機能を止めてしまっていることがあるようです。
以下のコマンドで調べることができます。

command
sudo rfkill list all
0: phy0: Wireless LAN
        Soft blocked: yes
        Hard blocked: no
1: hci0: Bluetooth
        Soft blocked: yes
        Hard blocked: no

遭遇したものでは上記のような出力結果になっていました。

この場合は、

command
sudo rfkill unblock all

上記のコマンドを実行するとifconfigでwlan0が出現するようになります。

コマンド実行後は

command
sudo dhclient wlan0

こちらのコマンドも実行してください。

8
7
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
8
7