web-dev-qa-db-ja.com

モジュールwlが見つかりません[ubuntu 16.04.1]

Ubuntu 16.04.1にはワイヤレス接続がありません。詳細は、debファイルをダウンロードして、手動で broadcom-wireless driver パッケージをインストールすることをお勧めします。 クォンタルアップデート後、ワイヤレスがなくなりました: 'モジュールwlが見つかりません'

Sudo dpkg -i bcmwl-kernel-source_6.30.223.141+bdcom-0ubuntu2_AMD64.debを実行すると以下が返されます。

(Reading database ... 181254 files and directories currently installed.)
Preparing to unpack bcmwl-kernel-source_6.30.223.141+bdcom-0ubuntu2_AMD64.deb ...
Removing all DKMS Modules
Done.
Unpacking bcmwl-kernel-source (6.30.223.141+bdcom-0ubuntu2) over (6.30.223.141+bdcom-0ubuntu2) ...
Setting up bcmwl-kernel-source (6.30.223.141+bdcom-0ubuntu2) ...
Loading new bcmwl-6.30.223.141+bdcom DKMS files...
Building only for 4.4.0-34-generic
Building for architecture x86_64
Module build for the currently running kernel was skipped since the
kernel source for this kernel does not seem to be installed.
modprobe: FATAL: Module wl not found in directory /lib/modules/4.4.0-34-generic
update-initramfs: deferring update (trigger activated)
Processing triggers for shim-signed (1.17~16.04.1+0.8-0ubuntu2) ..

したがって、Sudo modprobe wlを実行すると以下が返されます。

modprobe: FATAL: Module wl not found in directory /lib/modules/4.4.0-34-generic

lspci -knn | grep Net -A2は以下を返します。

13:00.0 Network controller [0280]: Broadcom Corporation BCM43142 802.11b/g/n [14e4:4365] (rev 01)
    Subsystem: Hewlett-Packard Company BCM43142 802.11b/g/n [103c:804a]
    Kernel modules: bcma
4
DarthRhaego

1つの問題は、古いバージョンのパッケージをインストールしていることです。削除しましょう:

Sudo dpkg -P bcmwl-kernel-source_6.30.223.141+bdcom-0ubuntu2_AMD64.deb

次に、ご覧ください:

このカーネルのカーネルソースがインストールされていないため、現在実行中のカーネルのモジュールビルドはスキップされました。

一時的なインターネット接続を取得して、以下を実行してください。

Sudo apt-get install --reinstall linux-headers-generic

ヘッダーの再インストールが完了したら、次を実行します。

Sudo apt-get install bcmwl-kernel-source

エラーまたは警告を投稿してください。

2
chili555