当我检查时lshw
,我得到以下结果
user@user# lshw -c network
*-network
description: Ethernet interface
product: I210 Gigabit Network Connection
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:01:00.0
logical name: eth0
version: 03
serial: **
capacity: 1Gbit/s
width: 32 bits
clock: 33MHz
capabilities: pm msi msix pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=igb driverversion=5.2.15-k firmware=3.25, 0x800005d0 ip=10.10.6.100 latency=0 link=no multicast=yes port=twisted pair
resources: irq:16 memory:f7e00000-f7e7ffff ioport:e000(size=32) memory:f7e80000-f7e83fff
*-network
description: Ethernet interface
product: I210 Gigabit Network Connection
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:02:00.0
logical name: eth1
version: 03
serial: **
size: 100Mbit/s
capacity: 1Gbit/s
width: 32 bits
clock: 33MHz
capabilities: pm msi msix pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=igb driverversion=5.2.15-k duplex=full firmware=3.25, 0x800005d0 ip=192.168.2.100 latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
resources: irq:17 memory:f7d00000-f7d7ffff ioport:d000(size=32) memory:f7d80000-f7d83fff
*-network UNCLAIMED
description: Network controller
product: AR9462 Wireless Network Adapter
vendor: Qualcomm Atheros
physical id: 0
bus info: pci@0000:03:00.0
version: 01
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: memory:f7c00000-f7c7ffff memory:f7c80000-f7c8ffff
根据我的研究,所需的驱动程序是 ath9k。但是 modprobe ath9k 给出了以下错误。
user@user#modprobe ath9k
modprobe: FATAL: Module ath9k not found.
在实际中,此文件位于库模块文件夹中
user@user:/lib/modules/3.16.0-4-amd64/kernel/drivers/net/wireless/ath# ls
ar5523 ath10k ath5k ath6kl ath9k ath.ko carl9170 wil6210
user@user:/lib/modules/3.16.0-4-amd64/kernel/drivers/net/wireless/ath/ath9k# ls
ath9k_common.ko ath9k_htc.ko ath9k_hw.ko ath9k.ko
我找到了我的解决方案,我错误地安装了两个内核。1)Linux 3.16.0-4-amd64 2)Linux 3.18.13-rt10mah+ x86_64
ath9k 驱动程序在 3.16.0-4 文件夹中可用,但在 3.18.13 的文件夹中不可用,因为 modprobe ath9k 没有工作。
将驱动程序文件从 3.16.0.4 的目录复制到 3.18.12-r10 也不起作用。
所以我从Backported kernal 门户 下载了 backported ath9k 驱动程序转储 下载所有稳定版本
并选择版本,靠近我的内核版本:v3.18-rc1 并遵循以下步骤。
下载内核备份
提取备份
导航到提取的文件夹位置
命令以下命令(使用命令
Make help
查看从软件包安装驱动程序的可能选项)sudo make defconfig-wifi sudo make sudo make install sudo update-initramfs -u reboot
它解决了我最初的网络无人认领的问题。如果有人仍然面临类似问题:请在 hd.gcet[AT]gmail 上给我发电子邮件,我很乐意为您提供帮助,因为我花了 5 天时间才解决,而且以这种方式安装的文档很少,而且很少和碎片。