web-dev-qa-db-fra.com

Intel Dual BandWireless-AC 3168 ne fonctionne pas sur Ubuntu 16.04

Je ne parviens pas à me connecter au wifi - l'option de connectivité sans fil n'est pas affichée. il n'y a que la seule option d'Ethernet. J'utilise Ubuntu version 16.04.

$ lspci -knn | grep Net -A2
05:00.0 Network controller [0280]: Intel Corporation Device [8086:24fb] (rev 10)
    DeviceName: Intel Dual BandWireless-AC 3168 802.11 ac 1x1 WiFi + BT 4.0 Combo Adapter
    Subsystem: Intel Corporation Device [8086:2110] 

$ ifconfig wlan0
wlan0: error fetching interface information: Device not found
$ modprobe iwl3945
modprobe: ERROR: could not insert 'iwl3945': Operation not permitted
$ ifconfig wlan0 up
wlan0: ERROR while getting interface flags: No such device

the screen shot of the problem wifi option is not there top right corner

1
Ambuj Dhakad

Cet adaptateur est supporté depuis le noyau 4.6.

La version du noyau dans Ubuntu 16.04 est 4.4.

Vous pouvez installer le noyau 4.8 sur Ubuntu 16.04 de cette façon:

Sudo add-apt-repository ppa:canonical-kernel-team/ppa 
Sudo apt update
Sudo apt install linux-generic-lts-yakkety
Sudo add-apt-repository -r ppa:canonical-kernel-team/ppa

Redémarrez après l'avoir fait.

Une fois que le paquetage linux-generic-lts-yakkety apparaît dans les principaux référentiels Ubuntu (cela devrait arriver bientôt), il commencera à recevoir des mises à jour.

Vous devez également installer un firmware, ceci peut être fait par

wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.161_all.deb
Sudo dpkg -i linux-firmware_1.161_all.deb
1
Pilot6