2026-01-23 Jetson OS Installation Log¶
Warning
This page is translated by LLM and may contain some inaccuracies. 中文版 (Chinese Version)
This document records the process and pitfalls of installing the OS on Jetson Orin NX between 2026-01-20 ~ 2026-01-22.
Steps¶
Prerequisites¶
Prepare Host OS
Check usage compatibility on SDK Manager Download Page.
Ubuntu 20.04, 22.04, 24.04 and Windows 10/11 should work.
We configure with Windows 11 below.
Since all development can be done on the Jetson, you don’t need Nvidia SDK on the Host.
Live USB (32GB) is an option.
Native OS is preferred.
VM is not recommended due to USB passthrough latency causing connection issues.
Download and Install SDK Manager
Download from here. An account is required.
Follow Nvidia official guide.
Prepare Items
Stable USB Type-C cable.
Monitor and DP cable.
Assembled DevKit with GPU & SSD. Refer to 2026-01-23 Jetson Assembly Log.
USB Keyboard and Mouse connected to DevKit.
Female-to-Female jumper wire.
Flash System¶
References
This section intends to replace Steps 1~7 of “Flash the System” in Jetson Orin.
Username & password are set in SDK Manager UI.
App partition automatically takes max space.
DevKit has built-in Wifi Antenna.
Summarized from Install Jetson Software with SDK Manager.
DevKit Connection (Recovery Mode)
Short FC REC and GND (jumper wire).
Connect Type-C to Host first, then plug in power.
Order matters! Fan should not spin if in Recovery Mode.
Connect Monitor.
Install Driver if needed.
SDK Manager Step 01: Check Jetson -> Check Target Hardware (Uncheck Host) -> Refresh/Select Manual -> JetPack >= 6.1.
SDK Manager Step 02: Select All (Jetson Linux, Runtime, Platform Services) -> Accept -> Continue.
SDK Manager Step 03: Installation.
If “Recovery Mode Setup” pops up, check connections and retry Manual.
Select Pre-config. Storage: NVMe. Set username/password (e.g.,
user/password).If connection unstable, retry connection.
If stalled/interrupted, stop and restart from Step 01 (completed parts will skip).
Virtual Keyboard (if no physical keyboard)
Login Screen: Top-right Accessibility icon -> On Screen Keyboard.
After Login: Settings -> Accessibility -> Show Menu -> Screen Keyboard.
Or Applications -> Onboard (more keys, but doesn’t work on system prompts).
SSH and Subsequent Setup¶
Continue from Step 8 of “Flash the System” in Jetson Orin (SSH, RT Kernel, Software Setup, Additional Packages).
SSH Connection
Same LAN (Wifi/Ethernet).
Connect:
Check IP with
ifconfig->ssh user@<ip>.(Hack) Try
ssh user@ubuntu.local.(Hack 2) Use
arp -ato find IP.
(Recommended) Change Hostname:
sudo hostnamectl hostname <newname>(e.g.,toddlerbot). Then you can usessh user@toddlerbot.local.(Recommended) Oh-My-Zsh:
sudo apt install zshInstall oh-my-zsh script.
chsh -s $(which zsh)Theme:
gallois
Install Project Repo
JetPack & Pytorch:
If torch fails during test,
cuda-toolkitmight be missing (missinglibcublas.so).Fix:
sudo apt install cuda-toolkit.
Additional Packages
For TensorRT path: check
~/miniforge3/envs/toddlerbotif$CONDA_PREFIXis missing.
Contribution Log
Operator & Author: Kevin Pan (@XiaoPanPanKevinPan)