如何啟用核心在採用 Debian 7 的 NUC DC3217IYE 上載入英特爾® 無線 7260 卡?

如何啟用核心在採用 Debian 7 的 NUC DC3217IYE 上載入英特爾® 無線 7260 卡?

環境

安裝驅動程式

我已將此卡安裝在 NUC 中。似乎偵測到藍牙。

root@marvin:~# rfkill list
0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no

我已經安裝了各種驅動程式/lib/firmware/

以下說明無線網路

# apt-get update && apt-get install firmware-iwlwifi


root@marvin:~# ls -al /lib/firmware/
total 9220
drwxr-xr-x  3 root root   4096 Oct  8 07:47 .
drwxr-xr-x 16 root root   4096 Oct  7 19:06 ..
drwxr-xr-x  2 root root   4096 May 23  2012 hp
-rw-r--r--  1 root root 337520 Jan  5  2013 iwlwifi-1000-5.ucode
-rw-r--r--  1 root root 337572 Jan  5  2013 iwlwifi-100-5.ucode
-rw-r--r--  1 root root 689680 Jan  5  2013 iwlwifi-105-6.ucode
-rw-r--r--  1 root root 701228 Jan  5  2013 iwlwifi-135-6.ucode
-rw-r--r--  1 root root 695876 Jan  5  2013 iwlwifi-2000-6.ucode
-rw-r--r--  1 root root 707392 Jan  5  2013 iwlwifi-2030-6.ucode
-rw-r--r--  1 root root 150100 Jan  5  2013 iwlwifi-3945-2.ucode
-rw-r--r--  1 root root 187972 Jan  5  2013 iwlwifi-4965-2.ucode
-rw-r--r--  1 root root 353240 Jan  5  2013 iwlwifi-5000-2.ucode
-rw-r--r--  1 root root 340696 Jan  5  2013 iwlwifi-5000-5.ucode
-rw-r--r--  1 root root 337400 Jan  5  2013 iwlwifi-5150-2.ucode
-rw-r--r--  1 root root 454608 Jan  5  2013 iwlwifi-6000-4.ucode
-rw-r--r--  1 root root 444128 Jan  5  2013 iwlwifi-6000g2a-5.ucode
-rw-r--r--  1 root root 679436 Jan  5  2013 iwlwifi-6000g2b-6.ucode
-rw-r--r--  1 root root 463692 Jan  5  2013 iwlwifi-6050-4.ucode
-rw-r--r--  1 root root 469780 Jan  5  2013 iwlwifi-6050-5.ucode

但也可以使用手動安裝英特爾無線 7260 驅動程式

-rw-r--r--  1 root root 683236 Oct  8 07:45 iwlwifi-7260-7.ucode
-rw-r--r--  1 root root 679780 Oct  8 07:47 iwlwifi-7260-8.ucode
-rw-r--r--  1 root root 681464 Oct  8 07:47 iwlwifi-7260-9.ucode

重新啟動後,仍無法偵測到無線適配器。

如何確保我的iwlwifi驅動程式已載入?

dmesg沒有顯示任何錯誤,iwlwifi也沒有顯示(?)。我想我應該iwlwifi在複製驅動程式後看到一個條目/lib/firmware


dmesg解決後

# dmesg | grep wifi
[    2.855945] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
[    2.856117] iwlwifi 0000:02:00.0: irq 43 for MSI/MSI-X
[    2.860244] iwlwifi 0000:02:00.0: firmware: direct-loading firmware iwlwifi-7260-9.ucode
[    2.860529] iwlwifi 0000:02:00.0: loaded firmware version 25.222.9.0 op_mode iwlmvm
[    2.876312] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
[    2.876893] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[    2.877157] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[    4.993291] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[    4.993523] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S

答案1

  • Debian 3.2.60-1+deb7u3 x86_64 GNU/Linux
  • 867Mbps 802.11ac Intel 7260 卡,雙頻 5GHz + 2.4GHz 無線 2x2 AC + 藍牙4.0

你的內核太舊了。http://wireless.kernel.org/en/users/Drivers/iwlwifi上面寫著“Intel® Wireless 7260 (3.10)”,因此您至少需要 Linux 3.10。

設定Debian 向後移植,並安裝更新的核心:

aptitude -t wheezy-backports install linux-image-amd64

相關內容