如何安装Debian RTL8821CE驱动?

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

以上用于解决自动安装的驱动,

如何安装Debian Realtek的无线驱动?

参阅文档
================

安装驱动下载
—————–
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

没有评论

发表回复

Debian-Like
如何修改Ubuntu SSSD加域用户的头像?

1 前言 一个问题,一篇文章,一出故事。 笔者的工作电脑是一部使用SSSD加域的电脑,加域的大致过程 …

Debian-Like
如何将远程主机端口经加密隧道映射到本地主机?

1 前言 一个问题,一篇文章,一出故事。 笔者最近需要将远程的一台主机“127.0.0.1:3128 …

Debian-Like
如何安装fcitx5解决Google Chrome输入法兼容问题?

1 前言 一个问题,一篇文章,一出故事。 笔者最近发现Google Chrome与当前系统的拼音输入 …