web-dev-qa-db-ja.com

Debian 8(Jessie):アップデート後にWIFIに接続できません

最近、Debian 8OSをアップデートしました。それ以来、wifiに接続できませんでした。 LANは問題なく動作します。以下のコマンド出力のサンプルを参照してください。

frank@debian8:~$ Sudo iwlist wlan0 scan
wlan0     Interface doesn't support scanning.


frank@debian8:~$ Sudo iwconfig
lo        no wireless extensions.
eth0      no wireless extensions.


frank@debian8:~$ Sudo ifconfig -a
eth0      Link encap:Ethernet  HWaddr 34:e6:d7:1e:50:21  
          inet addr:10.68.77.173  Bcast:10.68.77.255  Mask:255.255.255.128
          inet6 addr: fe80::36e6:d7ff:fe1e:5021/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:9246 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9323 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:7078862 (6.7 MiB)  TX bytes:2001113 (1.9 MiB)
          Interrupt:20 Memory:f7400000-f7420000 

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:925 errors:0 dropped:0 overruns:0 frame:0
          TX packets:925 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:104194 (101.7 KiB)  TX bytes:104194 (101.7 KiB)

frank@debian8:~$ lspci -vnn | grep -i net
00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet Connection I218-LM [8086:155a] (rev 04)
02:00.0 Network controller [0280]: Intel Corporation Wireless 7260 [8086:08b1] (rev 73)


frank@debian8:~$ Sudo dmesg|grep 'firmw\|wl'
[    4.588961] iwlwifi 0000:02:00.0: firmware: failed to load iwlwifi-7260-17.ucode (-2)
[    4.589058] iwlwifi 0000:02:00.0: Direct firmware load for iwlwifi-7260-17.ucode failed with error -2


frank@debian8:~$ Sudo rfkill unblock all ; Sudo ip link set wlan0 up
Cannot find device "wlan0"


frank@debian8:~$ lspci -knn | grep Net -A2
02:00.0 Network controller [0280]: Intel Corporation Wireless 7260 [8086:08b1] (rev 73)
    Subsystem: Intel Corporation Dual Band Wireless-AC 7260 [8086:4470]
03:00.0 3D controller [0302]: NVIDIA Corporation GF117M [GeForce 610M/710M/820M / GT 620M/625M/630M/720M] [10de:1140] (rev a1)


frank@debian8:~$ Sudo rfkill list
1: Dell-wifi: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: Dell-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
3: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no

Dell LatitudeE5440を使用しています。

更新:

その他のコマンド出力:

frank@debian8:~$ lsmod | grep Dell
dell_laptop            20480  0 
Dell_smbios            16384  1 Dell_laptop
dcdbas                 16384  1 Dell_smbios
Dell_smm_hwmon         16384  0 
video                  40960  3 Dell_laptop,nouveau,i915
Dell_smo8800           16384  0 
Dell_rbtn              16384  1 
rfkill                 24576  5 bluetooth,Dell_laptop,Dell_rbtn,cfg80211
1
Frankline

Intel によると、Intel® Dual Band Wireless-AC 7260はカーネルバージョン4.1以降で動作するはずです。

backports/etc/apt/sources.listに追加します。

deb http://deb.debian.org/debian jessie-backports main contrib non-free

バックポートから新しいカーネルを保存してインストールします。

Sudo apt-get update
Sudo apt-get install linux-image-4.9.0-0.bpo.3-AMD64
Sudo reboot
Sudo modprobe -r iwlwifi
Sudo modprobe iwlwifi

不足している依存関係は、apt-get install -t jessie-backports package-nameを介してインストールする必要があります。

1
GAD3R

バックポートからファームウェアをインストールし、これらのコマンドを実行することで、私はそれを実行しました。

apt-get install -t jessie-backports firmware-iwlwifi
modprobe iwlwifi
rfkill unblock all

再起動すると、wlan0を使用できました。

2