Debian 9 WIFI 드라이버 문제(새 설치)

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

답변1

이것broadcom-sta-dkmsdebianstretch에서 사용 가능하므로 jessie 저장소를 추가할 필요가 없습니다(권장하지 않음).

소프트웨어 broadcom-sta-dkms이기 때문에 이 구성 요소를 .non-freenon-freesources.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

따르다공식 가이드Wi-Fi 드라이버 설치 (질문에 게시됨)

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

dkms 대신 시냅틱에서 Broadcom-sta-sources를 설치해 보십시오.

관련 정보