SSH command

  ssh <username>@<ip of computer to ssh into>
  

SSH flag to pass windows

  ssh -X <username>@<ip of computer to ssh into>
  

getting username

getting hostname

  whoami
  
  hostname -f
  

or

  hostname -i
  

based on the two responses on another computer do:

  ssh <username>@<hostname>
# or
ssh <username>@<hostname>.local
  

depending on your set up you may or may not need to add the .local part


getting ip of a computer?

  ifconfig
  

checking connection

  ping <ip of jetson>
  

connecting to wifi with cli

  nmcli device wifi list
  
  sudo nmcli device wifi connect <Wifi name> password <wifi password>
  

Jetson ssh over ethernet

  # on jetson
sudo ifconfig eth0 192.168.1.100 netmask 255.255.255.0 up

# on laptop
sudo ifconfig <ethernet port (use ifconfig)> 192.168.1.1 netmask 255.255.255.0 up

#on jetson
ping 192.168.1.1
# on laptop
ping 192.168.1.100

#on laptop
ssh username@192.168.1.100
  

Jetson VNC

https://developer.nvidia.com/embedded/learn/tutorials/vnc-setup