WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Help with Wifi Adapter  (Read 1229 times)

Offline connoleg

  • Newbie
  • *
  • Posts: 2
Help with Wifi Adapter
« on: May 31, 2022, 11:09:03 AM »
Hi all,
I am trying to get a USB wifi adapter working on a pi4 with PiCore 13.1. I switched off the inbuilt wifi on the Pi as need to use an adapter with an external aerial.

Running dmesg I get the following:

[    1.663266] usb 1-1.3: new high-speed USB device number 3 using xhci_hcd
[    1.763767] usb 1-1.3: New USB device found, idVendor=0bda, idProduct=c811, bcdDevice= 2.00
[    1.763773] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.763779] usb 1-1.3: Product: 802.11ac NIC
[    1.763784] usb 1-1.3: Manufacturer: Realtek
[    1.763788] usb 1-1.3: SerialNumber: 123456

Does this mean that the device has been recognised and is ready to use?

 
« Last Edit: May 31, 2022, 11:16:54 AM by connoleg »

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10961
Re: Help with Wifi Adapter
« Reply #1 on: May 31, 2022, 11:04:55 PM »
It means the device was recognized, but only at the USB level, you don't have a driver for it installed.
The only barriers that can stop you are the ones you create yourself.

Offline Paul_123

  • Administrator
  • Hero Member
  • *****
  • Posts: 1078
Re: Help with Wifi Adapter
« Reply #2 on: June 01, 2022, 11:11:32 AM »
Realtek driver support is very limited in kernel.   Your specific device is a RTL8822cu base product, which is definitely not in the kernel sources.   You will have to build the driver yourself.....but since piCore does not have a dkms system, its a bit complicated.

Your best bet is to use a product with support in the kernel.   Here is some interesting information with regards to modern devices. 

https://github.com/morrownr/USB-WiFi

Offline connoleg

  • Newbie
  • *
  • Posts: 2
Re: Help with Wifi Adapter
« Reply #3 on: June 02, 2022, 01:13:45 AM »
Thanks guys, understood. Ill look for a different adapter from that resource

Gary