无 WLAN 或蓝牙 带有 Intel 8260 卡的 Debian 8.7.1

无 WLAN 或蓝牙 带有 Intel 8260 卡的 Debian 8.7.1

我无法在全新的 Debian 8.7.1 64 位安装上使用 WLAN。也许你可以帮我找到问题所在。我使用的卡是 Intel 8260 WLAN/蓝牙卡:

# lspci | grep Wire
04:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)

我用 apt 安装了 iwlwifi 并加载了模块:

# modprobe -r iwlwifi ; modprobe iwlwifi

lsmod 输出:

# lsmod | grep wif
iwlwifi                96547  0
cfg80211              413730  1 iwlwifi

iw配置:

# iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

那我还缺少什么?!我感觉是因为固件不支持内核?

root@dfog:/home/irrgeist# uname -a
Linux debian 3.16.0-4-amd64 #1 SMP Debian 3.16.39-1 (2016-12-30) x86_64 GNU/Linux

我重新启动了系统。

编辑:

#ls /lib/firmware/
av7110                iwlwifi-3160-8.ucode     iwlwifi-7260-8.ucode
carl9170-1.fw         iwlwifi-3160-9.ucode     iwlwifi-7260-9.ucode
cis                   iwlwifi-3945-2.ucode     iwlwifi-7265-8.ucode
dsp56k                iwlwifi-4965-2.ucode     iwlwifi-7265-9.ucode
hp                    iwlwifi-5000-2.ucode     iwlwifi-8000C-13.ucode
intel                 iwlwifi-5000-5.ucode     iwlwifi-8265-22.ucode
isci                  iwlwifi-5150-2.ucode     keyspan_pda
iwlwifi-1000-5.ucode  iwlwifi-6000-4.ucode     RTL8192E
iwlwifi-100-5.ucode   iwlwifi-6000g2a-5.ucode  RTL8192SU
iwlwifi-105-6.ucode   iwlwifi-6000g2a-6.ucode  rtl_nic
iwlwifi-135-6.ucode   iwlwifi-6000g2b-6.ucode  rtlwifi
iwlwifi-2000-6.ucode  iwlwifi-6050-4.ucode     usbduxfast_firmware.bin
iwlwifi-2030-6.ucode  iwlwifi-6050-5.ucode     usbdux_firmware.bin
iwlwifi-3160-7.ucode  iwlwifi-7260-7.ucode     usbduxsigma_firmware.bin

来源.list

#

# deb cdrom:[Debian GNU/Linux 8.7.1 _Jessie_ - Official amd64 NETINST Binary-1 20170116-10:57]/ jessie main

#deb cdrom:[Debian GNU/Linux 8.7.1 _Jessie_ - Official amd64 NETINST Binary-1 20170116-10:57]/ jessie main

deb http://ftp.de.debian.org/debian/ jessie main non-free contrib
deb-src http://ftp.de.debian.org/debian/ jessie main non-free contrib

deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

# jessie-updates, previously known as 'volatile'
deb http://ftp.de.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.de.debian.org/debian/ jessie-updates main contrib non-free

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

答案1

根据官方网站英特尔® 双频 Wireless-AC 8260 适用于内核版本4.1及更高版本。

您可以将向后移植存储库添加到您的sources.list

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

更新并运行apt-cache search linux-image以获取可用linux-image,然后安装kernel > 4.1

例如:

apt-get install linux-image-4.8.0-0.bpo.2-amd64

或最新的内核版本:

apt-get install linux-image-4.9.0-0.bpo.1-amd64-unsigned

重新启动系统并安装firmware-iwlwifi使蓝牙正常工作所需的:

apt-get install -t jessie-backports firmware-iwlwifi

wifi固件iwlwifi-8000C-16.ucode包含在firmware-iwlwifi包装中,也可以通过以下方式添加:

wget https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi-8000-ucode-16.242414.0.tgz
tar xvf iwlwifi-8000-ucode-16.242414.0.tgz
cd iwlwifi-8000-ucode-16.242414.0
cp iwlwifi* /lib/firmware

编辑

要解决从向后移植安装新内核重新安装后的黑屏问题xserver-xorg-video-intel,要获取有关该问题的更多信息,请参阅答案斯蒂芬·基特

apt-get remove xserver-xorg-video-intel 
apt-get install -t jessie-backports xserver-xorg-video-intel

答案2

根据英特尔支持网站

您需要更高的内核版本(4.1)。尝试从向后移植内核。

答案3

我进入突触包管理器并输入 iwlwifi,然后点击搜索。这给了我firmware-iwlwifi的选项,我选择并安装了它。然后我重新启动了wifi,现在看到了,我现在已经连接了。

Debianstretch 9,带有 intel 8260 WLAN/蓝牙卡(我这个月刚接触 Debian,但自 2012 年以来一直在使用 Ubuntu、Mint、Manjaro)。

相关内容