Getting Started with NVIDIA Jetson Xavier NX Developer Kit

From RidgeRun Developer Connection
< Jetson Xavier NX‎ | Introduction
Revision as of 14:01, 13 August 2020 by Dgarbanzo (talk | contribs) (Official Documentation Reference)
Jump to: navigation, search



Previous: Introduction/Developer_Kit Index Next: Development/Building_the_Kernel_from_Source


Nvidia-preferred-partner-badge-rgb-for-screen.png




Prepare microSD Card

To boot up your Jetson Xavier NX board you will need to prepare a microSD card with a bootable image. NVIDIA provides a prebuilt image that you can download from: Jetson Xavier NX Developer Kit SD Card Image

Once downloaded the image you need to write it to your microSD by following the instructions bellow:

1. Insert the microSD card to your computer and identify the corresponding device:

dmesg | tail | awk '$3 == "sd" {print}'

2. Flash the downloaded image, change /dev/sdx to your corresponding device:

#Change the path if you download the image to another location
unzip ~/Downloads/jetson-nx-developer-kit-sd-card-image.zip | sudo dd of=/dev/sdx bs=1M status=progress

3. Remove microSD from your computer

sudo eject /dev/sdx

Setup the Board

1. Insert the prepared microSD card into the slot under the Jetson Xavier NX Module in the developer kit.

2. Connect an HDMI display

3. Connect USB keyboard and mouse

4. Connect your power supply. The Jetson Xavier NX Developer Kit will power on and boot automatically.

First Boot

A green LED next to the Micro-USB connector will light as soon as the developer kit powers on. The Jetson Xavier NX Developer Kit will take you through some initial setup on the first boot time.

  • Review and accept NVIDIA Jetson software EULA
  • Select system language, keyboard layout, and time zone
  • Connect to Wireless network
  • Create username, password, and computer name
  • Log in

After all these steps you should see the Ubuntu 18.04 GUI Desktop.

Official Documentation Reference

You can take a look at the official NVIDIA documentation: "Getting Started With Jetson Xavier NX Developer Kit".


Previous: Introduction/Developer_Kit Index Next: Development/Building_the_Kernel_from_Source