AC600 Mbps Dual Band 2.4/5Ghz Wireless USB WiFi Network Adapter w/Antenna 802.11ac,802.11a,802.11n,802.11g, 802.11b
I plugged it in but it is not recognised.
Code: Select all
lsusb
Bus 001 Device 012: ID 0bda:c811 Realtek Semiconductor Corp.
I found this page https://askubuntu.com/questions/1089790 ... mtp-device where the solution is said to be:
which is Greek to me and is probably not applicable. At any rate, I gather the chipset it has is RTL8821CU.sudo apt-get install dkms
cd Downloads/
git clone https://github.com/whitebatman2/rtl8821CU.git
export DRV_NAME=rtl8821CU
export DRV_VERSION=5.2.5.3
set |grep DRV
sudo mkdir /usr/src/${DRV_NAME}-${DRV_VERSION}
git archive master | sudo tar -x -C /usr/src/${DRV_NAME}-${DRV_VERSION}
cd rtl8821CU/
git archive master | sudo tar -x -C /usr/src/${DRV_NAME}-${DRV_VERSION}
sudo dkms add -m ${DRV_NAME} -v ${DRV_VERSION}
sudo dkms build -m ${DRV_NAME} -v ${DRV_VERSION}
sudo dkms install -m ${DRV_NAME} -v ${DRV_VERSION}
The closest I can find in the CD is a file named
rtl8821AU_WiFi_linux_v5.2.6_21981.20170407_COEX20170206-6760.tar.gz
so the suffix is not the same.This page seems relevant: https://github.com/MingxuZhang/rtl8821cu
I am afraid that this is getting too complicated if I have to compile etc. I was hoping for plug and play. Is there a not too complicated way to get this device working?