我试图跟随这个答案中的步骤让这个USB wi适配器在我的Ubuntu20.04笔记本电脑上工作,但是得到了一条错误消息。
系统是这样检测到该设备的:
$ lsusb | grep 802
Bus 001 Device 006: ID 0bda:c811 Realtek Semiconductor Corp. 802.11ac NIC这里的其他答案表明,上面的ID意味着我需要rtl8821CU驱动程序。这显然可以很好地构建和安装:
$ git clone https://github.com/brektrou/rtl8821CU.git
$ cd rtl8821CU
$ sudo ./dkms-install.sh
About to run dkms install steps...
Creating symlink /var/lib/dkms/rtl8821CU/5.4.1/source ->
/usr/src/rtl8821CU-5.4.1
DKMS: add completed.
Kernel preparation unnecessary for this kernel. Skipping...
Building module:
cleaning build area...
'make' KVER=5.4.0-66-generic.....................................................
cleaning build area...
DKMS: build completed.
8821cu.ko:
Running module version sanity check.
- Original module
- No original module exists within this kernel
- Installation
- Installing to /lib/modules/5.4.0-66-generic/updates/dkms/
depmod....
DKMS: install completed.
Finished running dkms install steps.但在最后一步,却找不到:
$ sudo modprobe 88212cu
modprobe: FATAL: Module 88212cu not found in directory /lib/modules/5.4.0-66-generic接下来我该试试什么呢?谢谢。
发布于 2021-02-27 11:21:28
您应该更加小心地键入命令。
模块名为8821cu。
https://askubuntu.com/questions/1319773
复制相似问题