Broadcom 4360 無線設置,帶 Ubuntu 14.10

Broadcom 4360 無線設置,帶 Ubuntu 14.10

我正在嘗試設定無線適配器,但似乎無法正確安裝驅動程式。

  • 作業系統:Ubuntu 14.10
  • 主機板:ASUS X99-Deluxe(內建無線轉接器)
  • 適配器:博通 4360

顯然4360 未覆蓋由核心附帶的開源驅動程式。因此,我使用位於的檔案安裝了專有驅動程式 ( wl).deb這裡。事實上,這最初似乎有效,因為我在與適配器關聯的驅動程式列表中看到它:

相關專有驅動程式

但是,適配器仍然UNCLAIMED在輸出中顯示狀態lshw

在此輸入影像描述

當我看到這個時,我想也許我應該使用以下命令重新安裝驅動程式在 Ubuntu 幫助資源中找到的說明。當我嘗試此安裝時,我收到一條錯誤訊息

XXX@YYY ~                                                                                                                                                                  [16:33:25] 
> $ sudo apt-get install bcmwl-kernel-source                                                                                                                                                  
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  linux-headers-3.16.0-23 linux-headers-3.16.0-23-generic linux-headers-3.16.0-29 linux-headers-3.16.0-29-generic linux-image-3.16.0-23-generic linux-image-3.16.0-29-generic
  linux-image-extra-3.16.0-23-generic linux-image-extra-3.16.0-29-generic linux-signed-image-3.16.0-23-generic linux-signed-image-3.16.0-29-generic
Use 'apt-get autoremove' to remove them.
The following packages will be upgraded:
  bcmwl-kernel-source
1 upgraded, 0 newly installed, 0 to remove and 63 not upgraded.
Need to get 1,511 kB of archives.
After this operation, 2,267 kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu/ utopic/restricted bcmwl-kernel-source amd64 6.30.223.248+bdcom-0ubuntu1 [1,511 kB]
Fetched 1,511 kB in 1s (959 kB/s)                
(Reading database ... 340457 files and directories currently installed.)
Preparing to unpack .../bcmwl-kernel-source_6.30.223.248+bdcom-0ubuntu1_amd64.deb ...
Removing all DKMS Modules
Done.
Unpacking bcmwl-kernel-source (6.30.223.248+bdcom-0ubuntu1) over (6.30.223.30+bdcom-0ubuntu3) ...
Setting up bcmwl-kernel-source (6.30.223.248+bdcom-0ubuntu1) ...
Loading new bcmwl-6.30.223.248+bdcom DKMS files...
Building only for 3.17.1-031701-generic
Building for architecture x86_64
Building initial module for 3.17.1-031701-generic
ERROR (dkms apport): kernel package linux-headers-3.17.1-031701-generic is not supported
Error! Bad return status for module build on kernel: 3.17.1-031701-generic (x86_64)
Consult /var/lib/dkms/bcmwl/6.30.223.248+bdcom/build/make.log for more information.
modprobe: FATAL: Module wl not found.
update-initramfs: deferring update (trigger activated)
Processing triggers for initramfs-tools (0.103ubuntu8) ...
update-initramfs: Generating /boot/initrd.img-3.17.1-031701-generic

wl顯然,如果找不到它,我就無法分配。 (儘管它仍然顯示在驅動程式列表中。)我應該注意,我使用內核 v3.16 得到了相同的結果。我升級到下一個穩定版本,希望它能解決這個問題。在我的搜尋中,我還沒有看到有人遇到過這個,所以我不確定下一步該怎麼做。任何幫助將不勝感激。

答案1

顯然,您使用的核心 (3.17) 比 Ubuntu Utopic 官方使用的核心 (3.16) 更新,儲存庫中的驅動程式套件不支援該核心。您可以:

  • 希望升級舊軟體包(您有很多)可以解決您的問題,但您需要先卸載 Broadcom 驅動程式。

    dpkg -r bcmwl-kernel-source
    apt-get dist-upgrade
    apt-get install bcmwl-kernel-source
    
  • 將您的核心降級到 v 3.16。

  • 升級核心並升級bcmwl-kernel-source到即將發布的 Vivid 版本。

  • bcmwl從原始碼建立一個更新的模組。

相關內容