8
4

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.

Jetson Nano に Wi-Fiドングルを使用してみる。

Last updated at Posted at 2019-07-08

Jetson NanoにBAFFALO WI-U2-433DMS(rtl8812au or 8821au) のWi-Fiドングルを使う際に少しこけたのでメモしておく。

$ sudo su -

コンパイルに必要なライブラリをインストール

$ apt install linux-headers-generic gcc dkms build-essential git

各種PATHを通す。

$ export PATH=${PATH}:/usr/local/cuda/bin
$ export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/cuda/lib64
$ export ARCH=arm64

ソースをダウンロードする。

$ git clone https://github.com/scrivy/rtl8812AU_8821AU_linux.git

ダウンロードしたディレクトリに移動。

$ cd rtl8812AU_8821AU_linux

インストール

$ make
$ make install
$ modprobe -v rtl8812au
$ systemctl restart network-manager

再起動が必要かもしれません。
以上で完了です。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?