在新的 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

相关内容