如何安装Debian RTL8821CE驱动?
- By : Will
- Category : Debian-Like
Debian-Like
1 前言
一个问题,一篇文章,一出故事。
笔者笔记本需要安装Realtek的无线网卡驱动,于是整理此文。
2 最佳实践
2.1 确定网卡的型号
lspci | grep -i network
可见如下显示,
05:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter
2.2 安装工具
apt install bc module-assistant build-essential dkms m-a prepare
2.3 下载驱动包
wget https://codeload.github.com/tomaspinho/rtl8821ce/zip/refs/heads/master -O rtl8821ce-master.zip
以上只是范例命令,如果不能下载请请从如下页面浏览器下载,
https://github.com/tomaspinho/rtl8821ce
2.4 解压驱动包
unzip rtl8821ce-master.zip
2.5 安装驱动包
cd rtl8821ce-master/ ./dkms-install.sh
2.6 禁用不兼容的rtw8821ce模块
vim /etc/modprobe.d/blacklist.conf
加入如下配置,
blacklist rtw88_8821ce
然后你需要重启使配置生效,
reboot
以上用于解决自动安装的驱动,
参阅文档
================
安装驱动下载
—————–
https://github.com/tomaspinho/rtl8821ce
安装教程
—————–
https://miloserdov.org/?p=5930
错误的解决方法
—————–
https://askubuntu.com/questions/1326359/im-getting-installed-rtl8821ce-dkms-package-post-installation-script-subproces
没有评论