I am using this raspberry Pi
Architecture: armv7l
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 1
Core(s) per socket: 4
Socket(s): 1
Vendor ID: ARM
Model: 5
Model name: Cortex-A7
Stepping: r0p5
CPU max MHz: 900.0000
CPU min MHz: 600.0000
BogoMIPS: 38.40
Vulnerability Itlb multihit: Not affected
Vulnerability L1tf: Not affected
Vulnerability Mds: Not affected
Vulnerability Meltdown: Not affected
Vulnerability Mmio stale data: Not affected
Vulnerability Retbleed: Not affected
Vulnerability Spec store bypass: Not affected
Vulnerability Spectre v1: Mitigation; __user pointer sanitization
Vulnerability Spectre v2: Not affected
Vulnerability Srbds: Not affected
Vulnerability Tsx async abort: Not affected
Flags: half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm
I plugged in my AC1200 USB-AC53 Nano Wi-Fi adapter and ran dmesg
.
The result is:
[ 4.698502] usb 1-1.2: New USB device found, idVendor=0b05, idProduct=184c, bcdDevice= 2.10
[ 4.698556] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4.698579] usb 1-1.2: Product: 802.11ac NIC
[ 4.698597] usb 1-1.2: Manufacturer: Realtek
[ 4.698615] usb 1-1.2: SerialNumber: 123456
I installed firmware-realtek
, firmware-linux
, firmware-linux-free
, and firmware-linux-nonfree
then when I run ifconfig
I don't see my wlan
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.31 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::fe91:c019:3887:5f22 prefixlen 64 scopeid 0x20<link>
inet6 fd57:c6e2:9acf:479b:3970:b963:a9ca:1d4f prefixlen 64 scopeid 0x0<global>
ether b8:27:eb:5e:2b:19 txqueuelen 1000 (Ethernet)
RX packets 154 bytes 32643 (31.8 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 78 bytes 9163 (8.9 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 17 bytes 2111 (2.0 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 17 bytes 2111 (2.0 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
Any suggestions to help me with making my wifi works?
Thanks Namir
ifconfig
– midnight_rambler Oct 10 '23 at 23:43ifconfig
(which incidentally is deprecated) won't show an unconfigured interface.ls /sys/class/net/
will show what network devices you have. – Milliways Oct 11 '23 at 00:56ip
and to show all interfacesip a
. – MatsK Oct 11 '23 at 09:34raspberry@satellite-0:/etc/network $ ls /sys/class/net/ eth0 lo
– midnight_rambler Oct 11 '23 at 13:44