Wireless USB Adapter 0bda:c811 Realtek Semiconductor Corp网卡驱动
CentOS/RedHat 系统
sudo yum -y install kernel-headers //安装kernel-headers
sudo yum -y install kernel-devel //安装kernel-devel
Ubuntu/Debian系统
sudo apt-get install build-essential //install build-essential(optional)
sudo apt-get update //install linux-headers
sudo apt-get install linux-headers-$(uname -r)
sudo apt-get update && sudo apt-get install build-essential linux-headers-$(uname -r)
The good news is that your 0bda:c811 device has support and has been the subject of several answers and duplicates here before; for example: USB WIFI Realtek not an MTP device The bad news is that the previous driver files will not properly compile on Ubuntu 19.04 using a 5.0.0-xx kernel version.
I recommend that you use another method. With a temporary working internet connection, open a terminal and do:
sudo apt update
sudo apt install build-essential git dkms bc
git clone https://github.com/brektrou/rtl8821CU.git
cd rtl8821CU
chmod +x dkms-install.sh
sudo ./dkms-install.sh
It builds successfully, albeit with a few possibly harmless warnings, on my 5.0.0-23 system
Next, do:
sudo modprobe 8821cu
Your wireless should now be working.
评论已关闭