DEV Community

Cover image for SSH into NVIDIA Jetson TX2
Sabrina Pereira
Sabrina Pereira

Posted on

SSH into NVIDIA Jetson TX2

Find out the TX2 IP address by running:

hostname -I
Enter fullscreen mode Exit fullscreen mode

From your own computer:

ssh username@111.111.11.111
Enter fullscreen mode Exit fullscreen mode

Here the username will be the one you create when booting up the Jetson TX2. Then it will ask for your password, also the one you just created. After entering your password you are in.

If you don't want to bother with passwords, add your local computer public key to the TX2 by running:

ssh-copy-id username@111.111.11.111
Enter fullscreen mode Exit fullscreen mode

Now try ssh username@111.111.11.111 again, and you should get straight into your TX2.

Top comments (0)