Debian系安装Broadcom无线网卡驱动

205 阅读1分钟

使用的系统

➜  ~ uname -a
Linux huanan-kali 6.16.8+kali-amd64 #1 SMP PREEMPT_DYNAMIC Kali 6.16.8-1kali1 (2025-09-24) x86_64 GNU/Linux
➜  ~ lsb_release -a
No LSB modules are available.
Distributor ID: Kali
Description:    Kali GNU/Linux Rolling
Release:        2025.3
Codename:       kali-rolling

无线网卡型号

07:00.0 Network controller: Broadcom Inc. and subsidiaries BCM4360 802.11ac Dual Band Wireless Network Adapter (rev 03)

image.png

安装包

安装内核头文件及编译工具和dkms

sudo apt-get install linux-headers-generic build-essential dkms

sudo apt-get update

安装内核源码

sudo apt-get install linux-source

安装无线网卡包

sudo apt install broadcom-sta-dkms broadcom-sta-source firmware-b43-installer 

软件包说明

broadcom-sta-dkms and broadcom-sta-source

Broadcom STA is a binary-only device driver to support the following IEEE 802.11a/b/g/n wireless network cards: BCM4311-, BCM4312-, BCM4313-, BCM4321-, BCM4322-, BCM43142-, BCM43224-, BCM43225-, BCM43227-, BCM43228-, BCM4331-, BCM4360-, and BCM4352-based hardware.

This package provides the source code for the wl kernel modules and makes use of the DKMS build utility to install them for the running kernel. The alternative package broadcom-sta-source can be used instead in case of build problems.

firmware-b43-installer

This package downloads and installs the firmware needed by the b43 kernel driver for some Broadcom 43xx wireless network cards.

加载模块

modprobe wl

参考文档