web-dev-qa-db-fra.com

Wifi ne fonctionne pas dans mon ordinateur portable Asus sur Ubuntu 14.10

Après l'installation d'ubuntu 14.10, mon wifi ne fonctionne pas Voici quelques sorties de commande:

Sortie de ifconfig:

eth0      Link encap:Ethernet  HWaddr 9c:eb:e8:17:3b:76  
          inet addr:192.168.137.211  Bcast:192.168.137.255  Mask:255.255.255.0
          inet6 addr: fe80::9eeb:e8ff:fe17:3b76/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:16186 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:19612686 (19.6 MB)  TX bytes:1176569 (1.1 MB)


lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:1452 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1452 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:142697 (142.6 KB)  TX bytes:142697 (142.6 KB)

je ne peux pas trouver wlan0 ici sur la sortie.

Sortie de: lspci -nnk | grep -A2 0280

02:00.0 Network controller [0280]: Intel Corporation Wireless 7260 [8086:08b1] (rev cb)
    Subsystem: Intel Corporation Device [8086:4c70]

Sortie de lsusb:

Bus 001 Device 005: ID 03eb:8a41 Atmel Corp. 
Bus 001 Device 004: ID 064e:9700 Suyin Corp.
Bus 001 Device 003: ID 8087:07dc Intel Corp. 
Bus 001 Device 002: ID 8087:8000 Intel Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 002: ID 0b95:7e2b ASIX Electronics Corp. AX88772B
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Sortie de rfkill list all


0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
1: asus-wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: asus-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no

S'il vous plaît suggérer comment résoudre.

2
vicky singh

Téléchargez-le sur le bureau https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v3.18.1/backports-3.18.1-1.tar.xz Faites un clic droit et sélectionnez extraire ici puis

Sudo apt-get update
Sudo apt-get install linux-headers-generic build-essential

cd ~/Desktop/backports-3.18-1
make defconfig-iwlwifi
make
Sudo make install

Après un redémarrage, cela devrait fonctionner si vous avez le firmware, vous pouvez le faire pour vérifier ls /lib/firmware/ | grep iwlwifi-7260

Je m'attendrais à ce qu'une des prochaines mises à jour du noyau corrige ce problème dans la version 14.10, car le noyau 14.04 a récemment été corrigé pour résoudre les problèmes liés à la carte (rev cb).

1
Jeremy31