LoginSignup
4
4

More than 1 year has passed since last update.

Ubuntu 18.04でUSB無線子機TP-Link TL-WN725Nを使う

Posted at

Ubuntu18.04のノートPCをWiFiを使うため、
USB無線子機TP-Link社のTL-WN725Nのドライバをインストールし、使うまでをまとめます。
参考にしたURL:https://askubuntu.com/questions/1047832/tp-link-tl-wn725n-driver-for-18-04-version

使用したUSB無線子機

TL-WN725N
Amazonで700円台で買えて、性能も問題ないです!
https://amzn.to/2WedVty

Windows, MacOS, Linuxに対応しています。
Windowsなら付属のCDにインストーラもついていて簡単に導入できそうです。

ドライバのインストール

一応本家のTP-Link社のHPからダウンロードもできるのですが、それを使うとmakeが通らず・・・。
git cloneしてインストールしました。

$ sudo apt-get update
$ sudo apt-get install -y linux-headers-$(uname -r) build-essential git
$ git clone https://github.com/lwfinger/rtl8188eu
$ cd rtl8188eu
$ make all
$ sudo make install
$ sudo insmod 8188eu.ko

最後 sudo insmod を実行するとエラーが。。。

insmod: ERROR: could not insert module 8188eu.ko: Required key not available

これはセキュアブートが有効になっているためでした。
一旦再起動してBIOSを開いて、secure boot disabledにすると、解決!

無事WiFiが使えるようになりました!!

4
4
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
4
4