如何安装intel AX210驱动?

Debian-Like

1 前言

一个问题,一篇文章,一出故事。
笔者笔记本需要安装Realtek的无线网卡驱动,于是整理此文。

2 最佳实践

2.1 确定内核版本

uname -a

可见如下显示,

Linux debian 5.10.0-16-amd64 #1 SMP Debian 5.10.127-1 (2022-06-30) x86_64 GNU/Linux

注:改驱动需要“5.10+”的内核版本

2.2 确定系统检测到无线网卡

lspci | grep -i network

可见如下显示,

05:00.0 Network controller: Intel Corporation Device 2725 (rev 1a)

2.3 下载驱动包

cd ~
wget https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi-ty-59.601f3a66.0.tgz

以上只是范例命令,如果不能下载请请从如下页面浏览器下载,
https://www.intel.cn/content/www/cn/zh/support/articles/000005511/wireless.html
如果不兼容,可以请如下链接下载合适的驱动版本,
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/

2.4 解压驱动包

cd !
tar -xf iwlwifi-ty-59.601f3a66.0.tgz

2.5 安装驱动固件

cd ~/iwlwifi-ty-59.601f3a66.0/
cp iwlwifi-*.{ucode,pnvm} /lib/firmware/

2.6 重启系统加载驱动

reboot

2.7 确认驱动加载

nmcli device

可见如下显示,

DEVICE          TYPE      STATE         CONNECTION
enp3s0          ethernet  connected     Wired connection 1
wlp5s0          wifi      disconnected  --
p2p-dev-wlp5s0  wifi-p2p  disconnected  --
lo              loopback  unmanaged     --

注:“wlp5s0”为无线网卡设备

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

驱动下载
————
https://www.intel.cn/content/www/cn/zh/support/articles/000005511/wireless.html

安装文档
————-
https://wireless.wiki.kernel.org/en/users/Drivers/iwlwifi

蓝牙相关的文章
————-
https://askubuntu.com/questions/1132509/difference-between-bt-coex-active-n-and-bt-coex-active-1
https://bbs.archlinux.org/viewtopic.php?id=268439

没有评论

发表回复

Debian-Like
如果解决Linux WPS导出PDF文件的过程中遇到错误?

1 前言 一个问题,一篇文章,一出故事。 笔者使用WPS另存为PDF时遇到“WPS导出PDF文件的过 …

Debian-Like
如何安装部署Debian Slack?

1 前言 一个问题,一篇文章,一出故事。 Slack是一款流行的即时通讯软件,主要用于团队协作和沟通 …

Debian-Like
如何编译安装Debian Deepin Music?

1 前言 一个问题,一篇文章,一出故事。 笔者使用默认安装的Deepin Music感觉不够完美,于 …