我的 acer v nitro 笔记本电脑无法识别 Qualcom atheros 无线适配器

我的 acer v nitro 笔记本电脑无法识别 Qualcom atheros 无线适配器

请帮帮我,我是 Linux 新手。我运行命令来检查我的无线适配器是否正常工作。以下是结果。

deepu@deepu-Aspire-VN7-592G:~$ sudo lshw -C network
  ***-network UNCLAIMED**     
   description: Network controller
   product: QCA6174 802.11ac Wireless Network Adapter
   vendor: Qualcomm Atheros
   physical id: 0
   bus info: pci@0000:07:00.0
   version: 32
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress cap_list
   configuration: latency=0
   resources: memory:84000000-841fffff
*-network
   description: Ethernet interface
   product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:08:00.0
   logical name: eth0
   version: 15
   serial: 30:65:ec:8d:42:d4
   size: 100Mbit/s
   capacity: 1Gbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=192.168.200.217 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
   resources: irq:125 ioport:3000(size=256) memory:84204000-84204fff memory:84200000-84203ff

答案1

请尝试使用临时的互联网连接:

sudo apt-get update
sudo apt-get install linux-headers-generic build-essential
wget https://www.kernel.org/pub/linux/kernel/projects/backports/2015/11/20/backports-20151120.tar.gz
tar -zxvf backports-20151120.tar.gz
cd backports-20151120
make defconfig-ath10k
make
sudo make install

重启。可能缺少所需的固件。请查找并发布:

dmesg | grep ath

我将编辑我的答案以提供一种定位和安装固件的方法。

相关内容