Debian

如何找出我的路由器的晶片組?

  • January 22, 2020

試圖在我的新 debian 上安裝 wifi 我很困惑。它似乎比我想像的要復雜。據我所知,我需要手動下載路由器的驅動程序,這取決於他的晶片組。如何找出路由器的晶片組?

我有一個毛躁!Box 7430。

筆記

$ lspci -knn |grep Net -A3

01:00.0 Network controller [0280]: Intel Corporation Wireless 8260 [8086:24f3] (rev 3a)
Subsystem: Intel Corporation Wireless 8260 (Dual Band Wireless-AC 8260) [8086:1010]
Kernel modules: iwlwifi

$ uname -a

Linux debian-sgtechedge 4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u2 (2019-11-11) x86_64 GNU/Linux

您需要為Dual Band Wireless-AC 8260安裝 wifi 驅動程序,按照 debian wiki 上的安裝指南(替換stretchbuster):

向 中添加一個non-free組件/etc/apt/sources.list,例如:

deb http://httpredir.debian.org/debian/ buster main contrib non-free

更新可用軟體包列表並安裝firmware-iwlwifi軟體包:

apt-get update && apt-get install firmware-iwlwifi

由於iwlwifi支持的設備會自動載入該模組,請重新插入該模組以訪問已安裝的韌體:

modprobe -r iwlwifi ; modprobe iwlwifi

引用自:https://unix.stackexchange.com/questions/563361