2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LinuxMintでWiFi 5GHzに接続できなかった時の対処(Realtek)

Last updated at Posted at 2018-01-21

ASUS R206SにLinuxMintをインストールしたら、WiFi 5GHzに接続できなかった時の対処です。

面倒くさくて長いこと放置していましたが、似たようなことで困っている人がいるようだったので調べてみました。

まずlspci | grep Wirelessでデバイスを調べたところ、

01:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8821AE 802.11ac PCIe Wireless Network Adapter

RealtekのRTL8821AEであることが分かり、Webで検索すると同じような質問を見つけました。

Realtek 8821AE cannot connect to 5Ghz?

Try the rtlwifi_new driver from lwfinger:
https://sites.google.com/site/easylinuxtipsproject/reserve-7#TOC-The-rtlwifi_new-driver-from-lwfinger

トライふんたらかんたら…と言われるがままにリンク先の手順を踏んだところ、無事接続できるようになりました。

ビルド環境をインストールして,
sudo apt-get install git build-essential linux-headers-$(uname -r)

rtlwifi_newとやらのcloneを作成
git clone https://github.com/lwfinger/rtlwifi_new.git

Makeしてインストール

cd rtlwifi_new
make
sudo make install

再起動して、WiFiに接続

2
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?