Debian 安装缺少 aqc111 驱动程序

Debian 安装缺少 aqc111 驱动程序

我运行的是不稳定的 Debian

# uname -srvmo
Linux 5.10.0-1-amd64 #1 SMP Debian 5.10.4-1 (2020-12-31) x86_64 GNU/Linux

并想要使用需要aqc111驱动程序的设备。该驱动程序应包含在内核中:https://github.com/torvalds/linux/blob/v5.10/drivers/net/usb/aqc111.c

然而,由于某些原因,它在 Debian 中不可用:

# modinfo aqc111
modinfo: ERROR: Module aqc111 not found.

如何aqc111在我的系统上编译并安装驱动程序?

答案1

linux-image名称中包含atlantic (来自 Debian buster 的输出):

$ modinfo atlantic

filename:       /lib/modules/4.19.0-13-amd64/kernel/drivers/net/ethernet/aquantia/atlantic/atlantic.ko
description:    aQuantia Corporation(R) Network Driver
author:         aQuantia
version:        2.0.3.0-kern
license:        GPL v2

加载驱动程序:

sudo modprobe -v atlantic

相关内容