在新的 Debian 版本上啟用無線

在新的 Debian 版本上啟用無線

我剛剛在 HP Envy 筆記型電腦上安裝了 Debian 和 GNOME。

root@Cavalier:/home/jon# cat /etc/issue
Debian GNU/Linux 8 \n \l

root@Cavalier:/home/jon# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 8.6 (jessie)
Release:    8.6
Codename:   jessie

我使用電纜連接到互聯網。我想透過 wifi 連線。

我安裝了 Broadcom wifi 轉接器:

root@Cavalier:/home/jon# lspci | grep Wireless
08:00.0 Network controller: Broadcom Corporation BCM4352 802.11ac Wireless Network Adapter (rev 03)

右上角有一個圖標,告訴我「有線」狀態為「已連線」。但我看不到任何類似的無線功能。

我嘗試按照說明進行操作這裡,但是註銷或重新啟動後,我在右上角看不到任何與無線相關的內容。

我嘗試運行 nm-applet,但出現錯誤:

root@Cavalier:/home/jon# nm-applet

(nm-applet:2663): nm-applet-WARNING **: Failed to initialize D-Bus: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.

我還能嘗試什麼才能讓 wifi 正常運作

答案1

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
modprobe wl

https://wiki.debian.org/wl

答案2

根據德安維基您需要安裝broadcom-sta-dkms軟體包然後載入wl驅動程式

新增non-free儲存庫:

# Debian 8 "Jessie"
deb http://httpredir.debian.org/debian/ jessie main contrib non-free

安裝broadcom-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

相關內容