Raspbian(Debian 10)을 부팅할 때 다음이 있습니다.
$ sudo wpa_cli
wpa_cli v2.8-devel
Copyright (c) 2004-2019, Jouni Malinen <[email protected]> and contributors
This software may be distributed under the terms of the BSD license.
See README for more details.
Selected interface 'p2p-dev-wlan0'
Interactive mode
> status
wpa_state=INTERFACE_DISABLED
p2p_device_address=de:a6:32:32:e9:32
address=de:a6:32:32:e9:32
uuid=622a44c0-abb5-576f-93be-bd05478ea3b2
> scan
FAIL
데스크톱 인터페이스/마우스를 통해서만 Wi-Fi를 활성화할 수 있습니다. 재부팅할 때마다 수동으로 활성화해야 합니다.
시작 시 활성화하는 방법에 대한 팁이 있습니까?
감사해요
답변1
$ iwlist wlan0 scan
wlan0 Failed to read scan data : Network is down
$ sudo rfkill list all
0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no
$ sudo rfkill unblock all
$ sudo rfkill list all
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
해결됨