ubuntu18.04未发现wifi适配器,安装wifi无线网卡驱动RTL8822CE
时间: 2023-09-21 09:09:38 浏览: 229
ubuntu18.04安装为WIFI驱动,解决为开启WIFI适配器问题
在Ubuntu 18.04中,如果系统未能自动识别您的无线网卡,您需要手动安装RTL8822CE无线网卡驱动程序。请按照以下步骤进行操作:
1. 检查系统中是否安装了构建工具和内核标题:
```
sudo apt-get update
sudo apt-get install build-essential linux-headers-$(uname -r)
```
2. 下载RTL8822CE驱动程序:
```
git clone https://github.com/tomaspinho/rtl8821ce.git
```
3. 进入驱动程序所在目录并安装驱动程序:
```
cd rtl8821ce
chmod +x dkms-install.sh
sudo ./dkms-install.sh
```
4. 安装完成后,重新启动系统:
```
sudo reboot
```
以上步骤将安装RTL8822CE无线网卡驱动程序并重新启动系统。您应该能够看到无线网络适配器现在可用了。
阅读全文