web-dev-qa-db-ja.com

更新を取得した後、Ubuntu Wifiドライバーが機能しない

Ubuntu 16.04をラップトップにインストールしています。ある日、更新が行われるまでは正常に機能していました。更新後、私はカーネル4.15.0-13-genericを使用しています。 Broadcom Wifiドライバーはどこにも検出されませんでした。通知パネルには、wifiのオン/オフを切り替えるオプションはありません。

lspci -nnk | grep 0280 -A3の結果:

02:00.0 Network controller [0280]: Broadcom Limited BCM43142 802.11b/g/n [14e4:4365] (rev 01)
    Subsystem: Foxconn International, Inc. BCM43142 802.11b/g/n [105b:e071]
03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 0c)
    Subsystem: Sony Corporation RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [104d:90be]

Grubで現在の異なるカーネルを試しましたが、正常に動作しています。現在、wifiを使用するにはカーネル4.4.0-119.143に切り替える必要があります。

コマンドSudo apt-get install bcmwl-kernel-sourceのエラー出力は次のとおりです。

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  bcmwl-kernel-source
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 1,544 kB of archives.
After this operation, 8,064 kB of additional disk space will be used.
Get:1 http://in.archive.ubuntu.com/ubuntu xenial-updates/restricted AMD64 bcmwl-kernel-source AMD64 6.30.223.271+bdcom-0ubuntu1~1.2 [1,544 kB]
Fetched 1,544 kB in 5s (295 kB/s)                
Selecting previously unselected package bcmwl-kernel-source.
(Reading database ... 290899 files and directories currently installed.)
Preparing to unpack .../bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu1~1.2_AMD64.deb ...
Unpacking bcmwl-kernel-source (6.30.223.271+bdcom-0ubuntu1~1.2) ...
Setting up bcmwl-kernel-source (6.30.223.271+bdcom-0ubuntu1~1.2) ...
Loading new bcmwl-6.30.223.271+bdcom DKMS files...
First Installation: checking all kernels...
Building only for 4.15.0-20-generic
Building for architecture x86_64
Building initial module for 4.15.0-20-generic
ERROR: Cannot create report: [Errno 17] File exists: '/var/crash/bcmwl-kernel-source.0.crash'
Error! Bad return status for module build on kernel: 4.15.0-20-generic (x86_64)
Consult /var/lib/dkms/bcmwl/6.30.223.271+bdcom/build/make.log for more information.
modprobe: FATAL: Module wl not found in directory /lib/modules/4.15.0-20-generic
update-initramfs: deferring update (trigger activated)
Processing triggers for initramfs-tools (0.122ubuntu8.11) ...
update-initramfs: Generating /boot/initrd.img-4.15.0-20-generic

また、ubuntu 16.04ubuntu 18.04に更新すると、この問題の解決に役立ちます。

5
Adarsh Maurya

実行中のカーネル4.15.0-xxに一致するBroadcomドライバーのバージョンは6.30.223.271 + bdcom-0ubuntu4です。 Ubuntu 16.04のaptリポジトリを使用し始めたばかりであるため、システムは以前のバージョンをインストールしようとします。 viz:

Bcmwl-kernel-source(6.30.223.271 + bdcom-0ubuntu1〜1.2)の展開...

ターミナルを開いて以下を実行してください:

wget http://mirrors.kernel.org/ubuntu/pool/restricted/b/bcmwl/bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu4_AMD64.deb
Sudo dpkg -i bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu4_AMD64.deb

リブート。

10
chili555