Ubuntu 14.10을 사용한 Broadcom 4360 무선 설정

Ubuntu 14.10을 사용한 Broadcom 4360 무선 설정

무선 어댑터를 설정하려고 하는데 드라이버가 제대로 설치되지 않는 것 같습니다.

  • OS: 우분투 14.10
  • 마더보드: ASUS X99-Deluxe(무선 어댑터 내장)
  • 어댑터: 브로드컴 4360

보기에4360은 해당되지 않습니다.커널과 함께 제공되는 오픈 소스 드라이버를 통해. 결과적으로 다음 위치에 있는 파일을 사용하여 전용 드라이버( wl) 를 설치했습니다..deb여기. 실제로 이것은 어댑터와 관련된 드라이버 목록에서 볼 수 있기 때문에 처음에는 작동하는 것처럼 보였습니다.

전용 드라이버 관련

그러나 어댑터는 여전히 출력 UNCLAIMED에 상태를 표시합니다 lshw.

여기에 이미지 설명을 입력하세요

이것을 보고 드라이버를 다시 설치해야겠다는 생각이 들었습니다.Ubuntu 도움말 리소스에 있는 지침. 이 설치를 시도하면 다음과 같은 오류가 발생합니다.

XXX@YYY ~                                                                                                                                                                  [16:33:25] 
> $ sudo apt-get install bcmwl-kernel-source                                                                                                                                                  
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  linux-headers-3.16.0-23 linux-headers-3.16.0-23-generic linux-headers-3.16.0-29 linux-headers-3.16.0-29-generic linux-image-3.16.0-23-generic linux-image-3.16.0-29-generic
  linux-image-extra-3.16.0-23-generic linux-image-extra-3.16.0-29-generic linux-signed-image-3.16.0-23-generic linux-signed-image-3.16.0-29-generic
Use 'apt-get autoremove' to remove them.
The following packages will be upgraded:
  bcmwl-kernel-source
1 upgraded, 0 newly installed, 0 to remove and 63 not upgraded.
Need to get 1,511 kB of archives.
After this operation, 2,267 kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com/ubuntu/ utopic/restricted bcmwl-kernel-source amd64 6.30.223.248+bdcom-0ubuntu1 [1,511 kB]
Fetched 1,511 kB in 1s (959 kB/s)                
(Reading database ... 340457 files and directories currently installed.)
Preparing to unpack .../bcmwl-kernel-source_6.30.223.248+bdcom-0ubuntu1_amd64.deb ...
Removing all DKMS Modules
Done.
Unpacking bcmwl-kernel-source (6.30.223.248+bdcom-0ubuntu1) over (6.30.223.30+bdcom-0ubuntu3) ...
Setting up bcmwl-kernel-source (6.30.223.248+bdcom-0ubuntu1) ...
Loading new bcmwl-6.30.223.248+bdcom DKMS files...
Building only for 3.17.1-031701-generic
Building for architecture x86_64
Building initial module for 3.17.1-031701-generic
ERROR (dkms apport): kernel package linux-headers-3.17.1-031701-generic is not supported
Error! Bad return status for module build on kernel: 3.17.1-031701-generic (x86_64)
Consult /var/lib/dkms/bcmwl/6.30.223.248+bdcom/build/make.log for more information.
modprobe: FATAL: Module wl not found.
update-initramfs: deferring update (trigger activated)
Processing triggers for initramfs-tools (0.103ubuntu8) ...
update-initramfs: Generating /boot/initrd.img-3.17.1-031701-generic

wl분명히 찾을 수 없으면 할당할 수 없습니다 . (그래도 드라이버 목록에는 여전히 표시됩니다.) 커널 v3.16에서도 동일한 결과가 나왔다는 점에 유의해야 합니다. 문제가 해결되기를 바라면서 다음 안정 릴리스로 업그레이드했습니다. 검색을 해보니 아직 이 문제를 발견한 사람이 아무도 없어서 다음에 무엇을 해야 할지 잘 모르겠습니다. 어떤 도움이라도 대단히 감사하겠습니다.

답변1

분명히 Ubuntu Utopic이 공식적으로 사용하는 것(3.16)보다 최신 커널(3.17)을 사용하고 있는데, 이는 리포지토리의 드라이버 패키지에서 지원되지 않습니다. 다음 중 하나를 수행할 수 있습니다.

  • 이전 패키지(그 중 상당수)를 업그레이드하면 문제가 해결되기를 바라지만 먼저 Broadcom 드라이버를 제거해야 합니다.

    dpkg -r bcmwl-kernel-source
    apt-get dist-upgrade
    apt-get install bcmwl-kernel-source
    
  • 커널을 v 3.16으로 다운그레이드하세요.

  • 커널과 bcmwl-kernel-source곧 출시될 Vivid 릴리스로 업그레이드하세요.

  • bcmwl소스에서 최신 모듈을 빌드합니다 .

관련 정보