web-dev-qa-db-fra.com

Qualcomm Atheros QCA9565 non détecté par Ubuntu 16.04

Selon cette page ici ce pilote devrait fonctionner immédiatement, mais pas pour 16.04. Que puis-je faire pour que le sans fil fonctionne le 16.04? rfkill list affiche une sortie vide et ifconfig ne montre aucune interface sans fil.

Modifier 1:

Sortie de lspci -nnk | grep 0280 -A2

lspci: Unable to load libkmod resources: error -12
0f:00.0 Network controller [0280]: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter [168c:0036] (rev 01)
    DeviceName: Atheros AR9565 802.11bgn 1x1 WiFi Adapter
    Subsystem: Hewlett-Packard Company QCA9565 / AR9565 Wireless Network Adapter [103c:217f]

Edit 2:

Sudo modprobe ath9k && dmesg | grep ath
modprobe: ERROR: ../libkmod/libkmod.c:586 kmod_search_moddep() could not open moddep file '/lib/modules/4.5.4-040504-generic/modules.dep.bin'
modprobe: FATAL: Module ath9k not found in directory /lib/modules/4.5.4-040504-generic
1
Pdksock

Il semble que vous ayez installé une image du noyau principal à partir d’ici: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5.4-yakkety/ Assurez-vous d’avoir installé linux- en-têtes génériques appropriés à votre architecture; 32 ou 64 bits; également linux-headers-generic all et, enfin, linux-image-generic approprié à votre architecture; 32 ou 64 bits. Si l'un de ces trois éléments est manquant, installez-le, redémarrez puis essayez à nouveau:

Sudo modprobe ath9k && dmesg | grep ath

Vous ne devriez pas voir:

FATAL: module ath9k non trouvé

Et votre réseau sans fil devrait maintenant fonctionner.

3
chili555