LoginSignup
2
2

More than 3 years have passed since last update.

Thinkpad E580 + Ubuntu 18.04 環境でwifiを使えるようにする ( RTL8821CE )

Posted at

TL;DR

Thinkpad E580 に Ubuntu 18.04 をインストールしたところ、デフォルトのwifiドライバは対応していないらしく、新しく入れ直す必要があった。

インストール

以下に手順を記す。

ネットワークアダプタの確認

shell
$ lspci | grep Network
05:00.0 Network controller: Realtek Semiconductor Co., Ltd. \ 
RTL8821CE 802.11ac PCIe Wireless Network Adapter

RTL8821CEが wifi ドライバ名であることがわかる。

ドライバのダウンロード

shell
$ cd (適当なディレクトリ)
$ git clone https://github.com/tomaspinho/rtl8821ce.git

// gitをインストールしていない場合
$ sudo apt install git

導入環境構築

shell
$ sudo apt install bc module-assistant build-essential dkms
$ sudo m-a prepare

ドライバインストール

shell
$ cd rtl8821ce
$ sudo ./dkms-install.sh

この時点で Setting 内で wifi の項目が追加される。しかし、ネットワークアダプタが認識されていないので、再起動が必要。なので、

shell
$ reboot

終わり。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2