Press "Enter" to skip to content

openwrt安装无线网卡驱动

首先,确保你的系统的软件包列表是最新的:

opkg update

然后,安装 pciutils

opkg install pciutils

安装完成后,你就应该能使用 lspci 命令了。使用它来查找你的无线网卡型号:

lspci | grep -i network

可以看到我们的网卡:

03:00.0 Network controller: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter (rev 32)


Qualcomm Atheros QCA6174 是一款支持 802.11ac Wi-Fi 标准的无线网卡。对于这款网卡,Linux 系统(包括 OpenWrt)通常使用 ath10k 驱动程序,或者对于较新的内核版本,可能使用 ath10k-ct(Candela Technologies 的 ath10k 驱动的一个变体)。

以下是安装 ath10k 驱动程序或 ath10k-ct 驱动程序到 OpenWrt 的步骤:

更新 opkg 软件包列表

opkg update

安装 ath10k 驱动及固件

opkg install kmod-ath10k ath10k-firmware-qca6174

重启设备,无线网卡正确识别

想要搭建WiFi还需要下面的依赖

opkg install hostapd  hostapd-utils
发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注