Security
You might want to connect to the machine remotely. Securing your machine is a must because the default password is too easy to guess (We don't want to change the password because it would make other configuration more complex).
Copy the SSH Public Key to the Device
- Follow Setting Up Connection 1.
Disable Password Authentication for SSH
- Switch the workplace to the Jetson devices by either
ssh
or IO devices. - Open SSH daemon config file by running:
sudo vim /etc/ssh/sshd_config
- Make sure the following contents are present in order to allow key-based authentication:
RSAAuthentication yes PubkeyAuthentication yes
- Add the following contents or un-comment existed one:
PasswordAuthentication no
- Save the file
- Restart SSH daemon for changes to take effect by running:
sudo service sshd restart