新規 Debian ビルドでワイヤレスを有効にする

新規 Debian ビルドでワイヤレスを有効にする

HP Envy ラップトップに GNOME とともに 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

ケーブルを使用してインターネットに接続しています。Wi-Fi経由で接続したいです。

Broadcom Wi-Fi アダプターがインストールされています:

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.

Wi-Fiを機能させるために他に何を試せばいいでしょうか

答え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

関連情報