web-dev-qa-db-ja.com

Debian 9 WIFIドライバーの問題(新規インストール)

Debian 9の新規インストールで、独自のBroadcomドライバーのインストールに問題があります。

私は このガイド に正確に従いました。

しかし、最後のステップでエラーmodprobe: FATAL: Module wl not found in directory /lib/modules/4.9.0-1-AMD64が発生します

私はこれに対する多くの「修正」を見てきましたが、何も機能しないようです。 Sudo find / -name "modprobe*"の出力は次のとおりです。

/sbin/modprobe
/lib/modprobe.d
/proc/sys/kernel/modprobe
/etc/modprobe.d
/usr/share/man/man5/modprobe.d.5.gz
/usr/share/man/man8/modprobe.8.gz
/usr/share/bash-completion/completions/modprobe

コマンドlspci

03:00.0 Network controller [0280]: Broadcom Limited BCM4360 802.11ac  Wireless Network Adapter [14e4:43a0] (rev 03) 

Subsystem: Broadcom Limited BCM4360 802.11ac Wireless Network Adapter [14e4:0619] 

Kernel modules: bcma 04:00.0 PCI bridge [0604]: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge [1b21:1080] (rev 03

および/etc/apt/sources.list

# deb cdrom:[Debian GNU/Linux testing _Stretch_ - Official Snapshot AMD64 NETINST Binary-1 20170306-05:25]/ stretch main

#deb cdrom:[Debian GNU/Linux testing _Stretch_ - Official Snapshot AMD64 NETINST Binary-1 20170306-05:25]/ stretch main

deb http://ftp.us.debian.org/debian/ stretch main


deb http://security.debian.org/debian-security stretch/updates main


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


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


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


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

broadcom-sta-dkms はdebian stretchで利用できます。jessieリポジトリを追加する必要はありません(お勧めしません)。

broadcom-sta-dkmsnon-freeソフトウェアであるため、non-freeコンポーネントをsources.listに追加する必要があります。

/etc/apt/sources.listを次のように編集します。

deb http://deb.debian.org/debian stretch main contrib non-free
deb-src http://deb.debian.org/debian stretch main contrib non-free

deb http://deb.debian.org/debian stretch-updates main contrib non-free
deb-src http://deb.debian.org/debian stretch-updates main contrib non-free

deb http://security.debian.org/ stretch/updates main contrib non-free
deb-src http://security.debian.org/ stretch/updates main contrib non-free

システムを更新する

apt-get update && apt-get upgrade && apt-get dist-upgrade

broadcom-sta-dkmsを削除します

apt-get remove broadcom-sta-dkms

公式ガイド に従って、wifiドライバーをインストールします(質問に投稿されています)

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
2
GAD3R