Skip to main content
Version: Torizon OS 7.x.y

NVIDIA Hardware Support

How to Get Started

  1. Download the appropriate Torizon OS image from the Toradex Download Center, and unpack the tegraflash tarball. This guide assumes you are using the NVMe variant for Jetson Orin Nano. If using SD Card, refer to GitHub.
  2. Setup the board with cables as shown on the picture below.
  3. Connect the USB port to the host machine and put the target board into the recovery mode: short the FORCE_RECOVERY pin (labeled as FC_REC on the carrier board) to the ground, this can be done by installing a wired jumper to the contacts 9-10 of the J14 button header on the carrier board (refer to the Jetson Orin Nano Developer Kit Carrier Board Specification), then power on the board.
    Jetson Orin Nano Hardware Setup
  4. Run the doflash.sh script, inside the previously extracted folder:
    $ sudo ./doflash.sh
  5. When the script finishes, remove the recovery mode jumper, and restart the board. Establish a serial connection with the board (e.g. using picocom) and login with the default credentials. The default password for the user torizon is torizon. You will be prompted to change it on the first login:
    $ picocom -b 115200 /dev/ttyUSBx
  6. Create an account on https://app.torizon.io/.
  7. Go to the Hardware > Devices tab and click "Provision Device" to connect your device to the Torizon Cloud.
  8. Refer to the Remote Access article to learn how to access your device remotely over SSH through the Torizon Cloud. Check the Torizon Cloud documentation for additional features.

For more information, or if you want to build Torizon OS from source using Yocto, read the full documentation for NVIDIA boards available on the Torizon GitHub.

Run NVIDIA Docker

The NVIDIA container runtime is included in the jetson-orin-nano-devkit and jetson-orin-nano-devkit-nvme configuration images for Torizon.

Use docker run --runtime nvidia to run containerized NVIDIA applications. For example, to run the stable-diffusion tutorial from the NVIDIA Jetson AI Lab use the following command in Torizon:

sudo docker run --runtime nvidia -it --rm --network=host dustynv/stable-diffusion-webui:r36.2.0
Send Feedback!