This tutorial details how to install wi-fi dongles on the Jetson Nano with which I had success. The steps discussed where tested with Ubuntu 18.04 and Ubuntu 20.04.
-
Plug-in the AC600 or AC1300 adapter into one of the Jetson Nano USB ports. If your using an Jetson Nano A02, you can plug the AC600 into an USB2.0 port.
-
You can check if the dongle was detected via:
lsusb
- Install prerequisites:
sudo apt install git dkms net-tools
- Clone the driver repository and navigate into it:
git clone -b v5.6.4.2 https://github.com/aircrack-ng/rtl8812au.git
cd rtl8812au
- Build and install the driver:
sudo make dkms_install
- Reboot the board:
sudo reboot
- Use the network manager command line tool to see if the Wi-Fi is enabled or not:
sudo nmcli radio wifi
- If the output shows that the Wi-Fi is disabled, you can enable it with the following command:
sudo nmcli radio wifi on
- To list the available Wi-Fi access points by:
sudo nmcli dev wifi list
- You can connect to a particular acess point by:
sudo nmcli dev wifi connect network-ssid password network-password
Managing connection can also be accomplished via nmtui
which provides a text based ui.