Debian

無法使 wifi 與新的網路適配器一起使用

  • September 4, 2016

我的無線網路真的很慢。我決定購買一個新的 wifi 適配器(archer t8e)。它具有 BCM4360 晶片組。我得到它說它是使用 ndiswrapper 連接的,但我無法載入網站。wikidev上的連結說它應該可以工作。我需要採取哪些步驟才能使其正常工作?

⋊> ~ lspci -nn -d 14e4:                                                                          
04:00.0 Network controller [0280]: Broadcom Limited BCM4360 802.11ac Wireless Network Adapter [14e4:43a0] (rev 03)

根據Debian-wiki

non-free 組件添加到/etc/apt/sources.list

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

安裝 linux-headersbroadcom-sta-dkms打包:

apt-get update
apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms

解除安裝衝突的模組:

modprobe -r b44 b43 b43legacy ssb brcmsmac bcma

載入wl模組:

modprobe wl

編輯

關閉電源管理:

iwconfig wlan0 power off

要使其永久化,請在以下位置創建一個新文件/etc/pm/config.d

nano /etc/pm/config.d/power_off

具有以下內容:

#!/bin/sh
/sbin/iwconfig wlan0 power off

保存並使其可執行chmod +x /etc/pm/config.d/power_off然後重新啟動

引用自:https://unix.stackexchange.com/questions/307713