admin管理员组

文章数量:1567535

1. 原因

由于Realtek 8852是刚出wifi6无线网卡,因此部分linux内核中并没有对应的驱动,所以只能自己编译安装。

2. 查看网卡型号

$ sudo lspci | grep Network

02:00.0 Network controller: Realtek Semiconductor Co., Ltd. Device 8852

3. 驱动源码

https://github/lwfinger/rtw89

注意:目前源码只支持5.4及以上版本的内核。

4. 安装步骤

  • 系统版本

Kylin-Desktop-V10-SP1-2107-x86

$ sudo cat /etc/.kyinfo 
[dist]
name=Kylin
milestone=Desktop-V10-SP1-Release-2107
arch=x86_64
beta=False
time=2021-07-22 14:58:05
dist_id=Kylin-Desktop-V10-SP1-Release-2107-x86_64-2021-07-22 14:58:05

[servicekey]
key=0123027

[os]
to=
term=2023-02-07

$ uname -a
Linux admin-N70Z 5.4.18-35-generic #21-KYLINOS SMP Tue Jul 20 13:33:58 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

  • 安装依赖
sudo apt update
sudo apt install make gcc linux-headers-$(uname -r) build-essential git
  • 下载源码
git clone https://github/lwfinger/rtw89.git
  • 编译安装
cd rtw89
make
sudo make install

5. 重启

本文标签: 麒麟网卡驱动桌面系统Realtek