I followed the instructions at the Get Started guide, but when I visited the JetPack SDK page(JetPack Software Stack for NVIDIA Jetson | NVIDIA Developer), I couldn’t find a .zip image file. It seems only ISO-format files are available. Where can I download the .zip file for the SD card image?
*** Please note that this reply is generated by LLM automatically ***
The issue you’re facing is that you’re unable to find a zip file for the SD card image for the Jetson Orin Nano Developer Kit. The instructions you followed likely led you to the JetPack SDK page, where you expected to find a zip file for the SD card image. However, it seems that only ISO-format files are available.
To resolve this issue, you can use the ISO file to create a bootable SD card for your Jetson Orin Nano Developer Kit. Here’s a step-by-step guide to help you achieve this:
- Download the ISO file for the Jetson Orin Nano Developer Kit from the JetPack SDK page.
- Download Etcher for Linux from the Balena Etcher home page. Etcher is a tool that allows you to copy an image to an SD card.
- Make the downloaded Etcher file executable.
- Insert your SD card into your computer and open Etcher.
- Select the ISO file you downloaded in step 1 as the image to be written to the SD card.
- Select the SD card as the target device.
- Click “Flash” to start the process of writing the image to the SD card.
Alternatively, you can use the Linux dd command to write the ISO file to the SD card. To do this, follow these steps:
- Insert your SD card into your computer and open a terminal.
- Use the
diskutil listcommand to identify the device name of your SD card (e.g.,/dev/sdX). - Use the
ddcommand to write the ISO file to the SD card:sudo dd bs=4M if=jetson-image.iso of=/dev/sdX status=progress - Replace
jetson-image.isowith the name of the ISO file you downloaded, and replace/dev/sdXwith the device name of your SD card.
Once you’ve created a bootable SD card, you can use it to flash your Jetson Orin Nano Developer Kit.
In comparison to other Jetson devices, the Jetson Orin Nano Developer Kit is a development board that allows you to develop and test AI-powered applications. It’s not intended for production use, and it’s designed to be used with the JetPack SDK. The Jetson Orin NX and Jetson AGX Orin series are also part of the Jetson family, but they have different characteristics and use cases.
In terms of software, the Jetson Orin Nano Developer Kit uses the JetPack SDK, which includes Jetson Linux, accelerated software libraries, APIs, sample applications, developer tools, and documentation. The JetPack SDK is a comprehensive resource for building AI applications, and it’s used across the Jetson family.
I hope this helps you resolve your issue and get started with your Jetson Orin Nano Developer Kit.
*** Please give the thumbs up if you get answers you like. Or provide feedback to help us improve the answer. ***
I’m still trying to figure it out myself but I think Jetpack 7.x is just for Thor. Try this page JetPack SDK | NVIDIA Developer which is JetPack 6.2.1. Let me know if it works out for you. I’m still working on it.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.