在新的 Debian 构建上启用无线

Gin*_*ger 4 wifi debian

我刚刚在带有 GNOME 的 HP Envy 笔记本电脑上安装了 Debian。

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
Run Code Online (Sandbox Code Playgroud)

我使用电缆连接到互联网。我想通过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)
Run Code Online (Sandbox Code Playgroud)

右上角有一个图标,告诉我“有线”状态为“已连接”。但我看不到任何类似的无线。

我已尝试按照此处的说明进行操作,但在注销或重新启动后,我在右上角看不到任何与无线相关的内容。

我试过运行 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.
Run Code Online (Sandbox Code Playgroud)

我还能尝试什么来让 wifi 正常工作

Ipo*_*cer 7

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
Run Code Online (Sandbox Code Playgroud)

https://wiki.debian.org/wl

  • 在 ubuntu 上,驱动程序包含在内核中,在 debian 上,您需要添加 `non-free` repo (2认同)