Ubuntu 16.04 をインストールした後、ネットワーク デバイスが見つからない

Ubuntu 16.04 をインストールした後、ネットワーク デバイスが見つからない

最近、Windows 10 がプリインストールされた Lenovo T470 を購入しました。USB ブートで並行して Ubuntu 16.04 をインストールしました。他の多くの投稿のように、Wi-Fi 接続が表示されません。

関係がある場合に備えて、私のホーム ディレクトリは暗号化されています。

確認したところ、利用できる Wi-Fi / ネットワーク デバイスがありませんでした。

lspci -n -d 14e4

( 応答なし )

iwconfig
enp0s31f6  no wireless extensions.
lo         no wireless extensions.

設定にはワイヤレス ドライバーも表示されません。

Ubuntu がワイヤレス デバイスを認識できないのではないかと思います。この問題を解決するために必要な提案や詳細情報はありますか?

更新 1:
Pilot6 のコメントの後、再度確認しましたが、まだ応答がありません。

lspci -knn | grep Net -A2

アップデート2:

lspci
00:00.0 Host bridge: Intel Corporation Device 5904 (rev 02)
00:02.0 VGA compatible controller: Intel Corporation Device 5916 (rev 02)
00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21)
00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI (rev 21)
00:1c.0 PCI bridge: Intel Corporation Device 9d10 (rev f1)
00:1c.6 PCI bridge: Intel Corporation Device 9d16 (rev f1)
00:1d.0 PCI bridge: Intel Corporation Device 9d18 (rev f1)
00:1d.2 PCI bridge: Intel Corporation Device 9d1a (rev f1)
00:1f.0 ISA bridge: Intel Corporation Device 9d58 (rev 21)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21)
00:1f.3 Audio device: Intel Corporation Device 9d71 (rev 21)
00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21)
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (4) I219-V (rev 21)
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device b822
3e:00.0 Non-Volatile memory controller: Toshiba America Info Systems Device 0115 (rev 01)

lsusb
Bus 002 Device 002: ID 0bda:0316 Realtek Semiconductor Corp. 
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 004: ID 04f2:b5ab Chicony Electronics Co., Ltd 
Bus 001 Device 003: ID 0bda:b023 Realtek Semiconductor Corp. 
Bus 001 Device 002: ID 058f:9540 Alcor Micro Corp. AU9540 Smartcard Reader
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

アップデート3: LaunchPadで質問した後、さらに情報が提供されました

sudo lshw -C network
  *-network
       description: Ethernet interface
       product: Ethernet Connection (4) I219-V
       vendor: Intel Corporation
       physical id: 1f.6
       bus info: pci@0000:00:1f.6
       logical name: enp0s31f6
       version: 21
       serial: 54:e1:ad:1f:de:57
       capacity: 1Gbit/s
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=3.2.6-k firmware=0.1-4 latency=0 link=no multicast=yes port=twisted pair
       resources: irq:122 memory:ec200000-ec21ffff

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.2 LTS
Release:        16.04
Codename:       xenial

uname -a
Linux simon-ThinkPad-T470 4.8.0-36-generic #36~16.04.1-Ubuntu SMP Sun Feb 5 09:39:57 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

rfkill list
0: hci0: Bluetooth
        Soft blocked: no
        Hard blocked: no
1: tpacpi_bluetooth_sw: Bluetooth
        Soft blocked: no
        Hard blocked: no

答え1

4.8カーネルをお持ちの場合は、

sudo apt-get install git build-essential
git clone https://github.com/rtlwifi-linux/rtlwifi-next.git
cd rtlwifi-next
make
sudo make install

リブート

4.8カーネルではいくつかの警告が出ますがコンパイルできるはずです。

モジュールの省電力を無効にしましょう

echo "options rtl8822be ips=N" | sudo tee /etc/modprobe.d/rtl8822be.conf

そして、次のコマンドを使用して、ネットワークマネージャーが電源管理を有効にしないようにします。

sudo sed -i 's/wifi.powersave = 3/wifi.powersave = 2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf

リブート

答え2

最近、HP ラップトップ (14-cf0xxx) で Fedora 28 をインストールしようとしたときに、同じ問題に遭遇しました。Fedora 28 には次のカーネルが付属しています。

kernel-4.16.3-301.fc28.x86_64

このバージョンでは、rtl* WiFi ハードウェアは動作しませんでした。しかし、インターネットにアクセスできるようにするためにイーサネットを使用してシステムを更新したところ、この新しいバージョンの Linux カーネルは問題なく動作しました。

カーネル-4.18.5-200.fc28.x86_64

パッケージを単純に更新するだけでこの問題は解決され、モジュールを手動で構築する手間が省けます。

注記:私が扱っていた WiFi ハードウェアは次のとおりです。

$ lspci | grep Realtek
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter

関連情報