Jetson connection

There are three ways to connect to the Nvidia Jetson from the host computer:

  • Micro-USB cable connection through SSH

  • Micro-USB cable connection through serial terminal (PuTTY)

  • Wireless connection through SSH

Micro-USB cable connection through SSH

1

Connect the USB cable from the host computer to the micro-USB port on DroneCore.Pilot marked as USB_DEV

2

Power on the board and wait till Jetson boots

3

Open the terminal on the Linux host computer

4

Type ssh [email protected] (dcs_user is default username)

SSH login through USB
5

Enter password (default password = dronecore)

SSH login throung USB
6

The user is now remotely connected to the Jetson terminal


Wireless connection through SSH

1

Wi-Fi card with antennas must be assembled on the board. (M2 WIFI cards verified: Intel AC-9260NGW, Intel AC-8265NGW)

2

Power on the board and wait till Jetson boots

3

Create Wi-Fi hotspot with SSID: DCS_wifi, PASSWORD: dronecore

4

Find this Wi-Fi network and connect to it from the Linux host PC

Wi-Fi network acess
5

Open the terminal on the host PC and type ssh [email protected] (dcs_user is the default username)

6

Enter the password (default password = dronecore)

SSH login through Wi-FI
7

The user is now remotely connected to the Jetson terminal

circle-info

NOTE: if Jetson is not in access-point mode but connected to existing Wi-Fi network, the user must know the IP address of Jetson in that network and connect to this IP ssh [email protected]


Micro-USB cable connection through serial terminal (PuTTY)

1

Connect USB cable from the host computer to the micro-USB port on DroneCore.Pilot marked as USB_DEV

2

Power on the board and wait till Jetson boots

3

Open a serial terminal program (putty, teraterm, gtkterm etc.) on a Linux or Windows host PC

4

Open the corresponding port (Jetson is commonly identified as ttyACM0 on the Ubuntu host PC)

PuTTY configuration
5

Enter the user name of the user (DCS_user is the default username)

6

Enter the password (default password = dronecore)

Log in to Jetson through USB serial
7

The user is now remotely connected to the Jetson terminal


Useful hints

Changing Ubuntu hostname:

  • Execute the following commands in the terminal

  • hostnamectl set-hostname desired_hostname

  • sudo reboot

Changing Ubuntu user-name:

  • Execute the following commands in the terminal

  • sudo usermod -l desired_username current_username

  • sudo usermod -d /home/desired_username -m desired_username

  • sudo groupmod -n desired_username current_username

Changing Ubuntu user-password:

  • Execute the following commands in the terminal

  • For user password: passwd

  • For root password: sudo passwd

Changing Wi-Fi SID/PASSWORD:

  • Execute the following commands in the terminal

//add how to change automatic wifi hotspot sid/pass

Last updated