Post Configuration
After cloning the system to all devices, it's time to set up other things that are different for some devices. See the sub-articles in order.
Prerequisites
System
All the Jetson devices have done the instructions in the previous articles.
Set Up Network
There will be one device acting as a server to install and connect to all the other Jetson devices. This server can be either your computer or one of the Jetson devices.
- OPTION 1: Connect all Jetson devices to the same local area network.
- OPTION 2: Connect all Jetson devices and your computer to the same local area network.
Based on the above option chosen, run the following setup on:
- OPTION 1: The Jetson device as the server.
- OPTION 2: Your computer.
Update Package Index
Update the package index by running:
sudo apt-get update
Install SSHPass
SSHPass is a tool for connection to be established by specifying password as part of the command.
Install SSHPass by running:
sudo apt-get install sshpass
Install XMLStarlet
XMLStarlet is a set of command line utilities to manipulate XML files. We'l l use it in the bash script to parse XML log file produced by Nmap.
Install XMLStarlet by running:
sudo apt-get install xmlstarlet
Install Nmap
Nmap is a utility for network discovery and security auditing. We'll use it in the bash script to scan the local area network.
Install Nmap by running:
sudo apt-get install nmap