I have a problem, I'm using a wifi adapter TL-WN725N. On the display when scanning, it says "No Wireless Interfaces Found".
I've used the solution from the website: https://gist.github.com/MBing/de297a8ae5e8a191c55a67a568d20d31
But, it's failed.
I want to use the solution from: http://downloads.fars-robotics.net/wifi-drivers/8188eu-drivers/
But, my kernel is not available.
My kernel:
Linux raspberrypi 5.10.63-v7+ #1496 SMP Wed Dec 1 15:58:11 GMT 2021 armv7l GNU/Linux
My OS Version:
PRETTY_NAME="Raspbian GNU/Linux 10 (buster)"
NAME="Raspbian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
When I do ifconfig
, the wifi adapter can detect:
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.100.1 netmask 255.255.255.0 broadcast 192.168.100.255
inet6 fe80::a19d:4bb7:cbb8:7252 prefixlen 64 scopeid 0x20<link>
ether b8:27:eb:45:d5:4a txqueuelen 1000 (Ethernet)
RX packets 6683 bytes 907655 (886.3 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 2714 bytes 487448 (476.0 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 952 bytes 83318 (81.3 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 952 bytes 83318 (81.3 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlan0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether 9c:a2:f4:70:fb:f0 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
WiFi adapter can also scan using iwlist
.
$ iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
wlan0 unassociated ESSID:"" Nickname:"<WIFI@REALTEK>"
Mode:Auto Frequency=2.412 GHz Access Point: Not-Associated
Sensitivity:0/0
Retry:off RTS thr:off Fragment thr:off
Power Management:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
wpa_supplicant.conf settinf
$cat /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=ID
network={
ssid="MY_WIFI"
psk="1234567890"
key_mgmt=WPA-PSK
}
However, when connecting to a WiFi Client (using wpa_supplicant.conf). Communication not connected. What's Happen?