Acer-Aspire E 15 (Ubuntu 16.04、カーネル: 4.4.0-21-generic) で Wi-Fi が動作しない

Acer-Aspire E 15 (Ubuntu 16.04、カーネル: 4.4.0-21-generic) で Wi-Fi が動作しない

新しい Acer-Aspire E15 で WiFi が動作しません。デュアルブートなしで、Ubuntu 16.04、カーネル: 4.4.0-21-generic のみが実行されています。

lspci

00:00.0 Host bridge: Intel Corporation Broadwell-U Host Bridge -OPI (rev 09)
00:02.0 VGA compatible controller: Intel Corporation Broadwell-U Integrated Graphics (rev 09)
00:03.0 Audio device: Intel Corporation Broadwell-U Audio Controller (rev 09)
00:14.0 USB controller: Intel Corporation Wildcat Point-LP USB xHCI Controller (rev 03)
00:16.0 Communication controller: Intel Corporation Wildcat Point-LP MEI Controller #1 (rev 03)
00:1b.0 Audio device: Intel Corporation Wildcat Point-LP High Definition Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #1 (rev e3)
00:1c.2 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #3 (rev e3)
00:1c.3 PCI bridge: Intel Corporation Wildcat Point-LP PCI Express Root Port #4 (rev e3)
00:1d.0 USB controller: Intel Corporation Wildcat Point-LP USB EHCI Controller (rev 03)
00:1f.0 ISA bridge: Intel Corporation Wildcat Point-LP LPC Controller (rev 03)
00:1f.2 SATA controller: Intel Corporation Wildcat Point-LP SATA Controller [AHCI Mode] (rev 03)
00:1f.3 SMBus: Intel Corporation Wildcat Point-LP SMBus Controller (rev 03)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
03:00.0 Network controller: Qualcomm Atheros Device 0042 (rev 30)

そして

lshw -C network

*-network               
   description: Ethernet interface
   product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:02:00.0
   logical name: enp2s0
   version: 15
   serial: 2c:60:0c:f3:26:79
   size: 1Gbit/s
   capacity: 1Gbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=192.168.178.53 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
   resources: irq:47 ioport:3000(size=256) memory:c1204000-c1204fff memory:c1200000-c1203fff


*-network UNCLAIMED
       description: Network controller
       product: Qualcomm Atheros
       vendor: Qualcomm Atheros
       physical id: 0
       bus info: pci@0000:03:00.0
       version: 30
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress cap_list
       configuration: latency=0
       resources: memory:c1000000-c11fffff

ここの結果ですワイヤレス情報スクリプトpaste.ubuntu.com に投稿

私はグーグルで調べた後、次のようなさまざまな修正方法を試しました(これそしてこれ) を試しましたが、どれも機能しませんでした。この問題を特定して解決するのを手伝ってくれる人はいませんか?

編集:

modinfo ath10k_pci | grep backport
version:        backported from Linux (next-20151120-0-ga78de01) using backports backports-20151120-0-g906a6b3

答え1

バックポートがインストールされていますが、16.04では不要なのでアンインストールする必要があります。

cd backports-20151120
sudo make uninstall

ファームウェアがインストールされている場合は、再起動してWi-Fiが機能するはずです。

バックポートのバージョンを複数持っている人は多くないので、ターミナルに組み込まれているオートコンプリート機能を使うことができます。入力cd backportsしてTABキーを押すと、コマンドが完成します。バックポートディレクトリに入ったら、sudo make uninstallバックポートをアンインストールして再起動します。

答え2

同様の状況にある人のために:

4.8カーネルへのアップデート

sudo apt-get update && sudo apt-get install linux-generic-hwe-16.04

その後再起動します。

私は自分の問題をUbuntuフォーラムに投稿しましたここ

関連情報