在 Debian 8.3 中获取网络 UNCLAIMED

在 Debian 8.3 中获取网络 UNCLAIMED

当我检查时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

我找到了解决方案,我错误地安装了两个内核。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 也不起作用。

所以我从 反向移植的内核门户 下载所有稳定版本

并选择接近我的内核版本的版本:v3.18-rc1,然后按照以下步骤操作。

  1. 下载内核备份

  2. 提取备份

  3. 导航至解压文件夹位置

  4. 命令以下命令(使用命令Make help 查看从包中安装驱动程序的可能选项)

    sudo make defconfig-wifi sudo make sudo make install sudo update-initramfs -u reboot

它解决了我最初遇到的网络无人认领问题。如果有人仍然面临类似的问题:请通过 hd.gcet[AT]gmail 给我发送电子邮件,我很乐意为您提供帮助,因为我花了 5 天时间才解决这个问题,而且关于通过这种方式安装的文档非常少,而且都是零零碎碎的。

相关内容