[Kernel/Drive] 【网络】设置有限网卡多出2个,无线网卡无法启用
Tofloor
poster avatar
白夜
deepin
2023-11-20 17:36
Author

【前置条件】: 笔记本型号为HP ProBook 440 GB,无线网卡:Intel Corporation Wi-Fi 6 AX201 (rev 20),由于在安装20.9镜像的时候插入了外置无线网卡,主要方便更新软件及系统

【问题现象】:有限网络多出两个,无线网络存在无法启用的状态,但外置无线网卡显示成有限网络,可使用

【复现步骤】: 笔记本原Windows系统,直接重装为Deepin20

【预期结果】: 预期重装完成后无线网卡可直接使用

【实际结果】: 无线网卡功能异常,无法启动该功能

截图_选择区域_20231117090144.png

截图_dde-control-center_20231117090011.png

截图_选择区域_20231117085944.png

Reply Favorite View the author
All Replies
云的眼泪
deepin
2023-11-20 18:32
#1

AX201好像要单独安装驱动

Reply View the author
蔡EEPIN
deepin
2023-11-20 18:39
#2

去官网下载个ax201的驱动装上

Reply View the author
白夜
deepin
2023-11-21 01:22
#3

20231120 更新,感谢两位师傅的指导,在网上搜索参考教程如下:
【Ubuntu18.04 解决蓝牙wifi 之ax201无线网卡驱动安装】
https://blog.csdn.net/vor234/article/details/131682778
【Linux* Support for Intel® Wireless Adapters】
https://www.intel.com/content/www/us/en/support/articles/000005511/wireless.html

实际按照官网进行了对应版本网卡的更新,重新后问题并没有解决,现象如故。

Reply View the author
白夜
deepin
2023-11-23 22:12
#4

【解决此网卡驱动脚本】

#!/bin/bash
# 作者:杉何mogu https://www.bilibili.com/read/cv19846954/ 出处:bilibili
set -e
echo "英特尔无线AX2xx驱动下载中..."
wget -P /tmp/ -c https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi-ty-59.601f3a66.0.tgz
wget -P /tmp/ -c https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi/iwlwifi-qu-48.13675109.0.tgz
wget -P /tmp/ -c https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi/iwlwifi-cc-46.3cfab8da.0.tgz

echo "驱动文件压缩包解压中..."
mkdir /tmp/install/
tar zxvf /tmp/iwlwifi-ty-59.601f3a66.0.tgz -C /tmp/install/
tar zxvf /tmp/iwlwifi-qu-48.13675109.0.tgz -C /tmp/install/
tar zxvf /tmp/iwlwifi-cc-46.3cfab8da.0.tgz -C /tmp/install/
echo "已解压成功..."
if [ -d "/lib/firmware" ];then
    echo "拷贝到操作系统驱动程序目录 /lib/firmware"
    sudo cp /tmp/install/iwlwifi-cc-46.3cfab8da.0/iwlwifi-cc-a0-46.ucode /lib/firmware
    sudo cp /tmp/install/iwlwifi-Qu-48.13675109.0/iwlwifi-Qu-*-48.ucode /lib/firmware
    sudo cp /tmp/install/iwlwifi-ty-59.601f3a66.0/iwlwifi-ty-a0-gf-a0-59.ucode /lib/firmware
    echo "已拷贝成功..."
else
    echo "操作系统驱动程序目录 /lib/firmware 已发现!"
    rm -rf /tmp/install /tmp/iwlwifi-ty-59.601f3a66.0.tgz /tmp/iwlwifi-qu-48.13675109.0.tgz /tmp/iwlwifi-cc-46.3cfab8da.0.tgz
    echo "已清除缓存..."
    set +e
    exit 1
fi
echo "清除缓存中..."
rm -rf /tmp/install /tmp/iwlwifi-ty-59.601f3a66.0.tgz /tmp/iwlwifi-qu-48.13675109.0.tgz /tmp/iwlwifi-cc-46.3cfab8da.0.tgz
echo "已清除缓存..."
echo "安装成功!"
set +e 


Reply View the author