Debian 8(Jessie): 업데이트 후 WIFI에 연결할 수 없습니다

Debian 8(Jessie): 업데이트 후 WIFI에 연결할 수 없습니다

최근에 Debian 8 운영 체제를 업데이트했습니다. 그 이후로 Wi-Fi에 연결할 수 없었습니다. 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

델 래티튜드 E5440을 사용하고 있습니다.

고쳐 쓰다:

추가 명령 출력:

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

백포트에서 펌웨어를 설치하고 이 명령을 실행하면 나에게 도움이 되었습니다.

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

재부팅 후 사용할 수있었습니다 wlan0.

답변2

~에 따르면인텔, 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.

관련 정보