무선 어댑터 Broadcom [14e4:43a3]이 Ubuntu에서 작동하지 않습니다.

무선 어댑터 Broadcom [14e4:43a3]이 Ubuntu에서 작동하지 않습니다.

나는 대답의 지시를 따랐다.

Dell XPS 13(9350) 호환성

Ubuntu 15.10을 새로 설치한 Dell XPS 13(9350)에서 Wi-Fi(broadcom BCM4350)가 작동하지 않는 문제를 해결합니다.

압축을 푼 후 답변에 자세히 설명된 명령을 따릅니다. 첫번째

sudo chown root:root brcmfmac4350-pcie.bin BCM-0a5c-6412.hcd

보고

chown: changing ownership of 'brcmfmac4350-pcie.bin': Operation not permitted
chown: changing ownership of 'BCM-0a5c-6412.hcd': Operation not permitted

다음 명령줄

sudo mv -t /lib/firmware/brcm/ BCM-0a5c-6412.hcd brcmfmac4350-pcie.bin

잘 작동하지만

sudo dpkg -i linux-headers-4.3.0-wifitest-custom_4.3.0-wifitest-custom-10.00.Custom_amd64.deb linux-image-4.3.0-wifitest-custom_4.3.0-wifitest-custom-10.00.Custom_amd64.deb

보고

Error! Your kernel headers for kernel 4.3.0-wifitest-custom cannot be found. Please install the linux-headers-4.3.0-wifitest-custom package, or use the --kernelsourcedir option to tell DKMS where it's located

나는 Linux에 관해 정말 멍청한 사람이므로 도움을 주시면 감사하겠습니다.

답변1

이 어댑터는 Ubuntu 안정 커널에서 지원되지 않습니다.

작동시키는 방법은 Ubuntu 16.04 분기에서 4.4 커널을 설치하는 것입니다.

유선으로 인터넷에 연결하고 터미널에서 실행

mkdir linux-4.4
cd linux-4.4
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-8-generic_4.4.0-8.23_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-image-extra-4.4.0-8-generic_4.4.0-8.23_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-8-generic_4.4.0-8.23_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-8_4.4.0-8.23_all.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.156_all.deb
sudo dpkg -i *.deb

그런 다음 재부팅하고 Wi-Fi를 테스트하십시오.

커널 파일은 업데이트 대상입니다. 링크를 업데이트해야 합니다.우분투 패키지 검색올바른 링크를 얻는 데 사용할 수 있습니다

업데이트:Ubuntu 14.04 사용자의 경우 4.4 커널은 다음을 통해 설치할 수 있습니다.

sudo apt-get install linux-generic-lts-xenial

그러나 gcc 4.9+가 설치되지 않은 경우 dkms 패키지는 이 케넬로 빌드되지 않습니다.

답변2

방금 커널 v4.5를 설치했습니다.http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5-wily/내 Dell XPS 13(9350)에서 Wi-Fi가 이제 잘 작동합니다. 이전에는 커널 v4.2가 있었고 v4.4 rc6 및 rc7 설치를 성공하지 못했습니다(설치 후 Ubuntu를 시작할 수도 없었습니다).

따라야 할 단계:

mkdir /tmp
cd /tmp
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5-wily/linux-headers-4.5.0-040500-generic_4.5.0-040500.201603140130_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5-wily/linux-headers-4.5.0-040500_4.5.0-040500.201603140130_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5-wily/linux-image-4.5.0-040500-generic_4.5.0-040500.201603140130_amd64.deb
sudo dpkg -i *.deb
reboot

관련 정보