Auto startupAn easy way automatically start the Nxt server at boot is with the cron task scheduler. You need to add an entry specifying
@reboot and run your startup commands there:
crontab -e@reboot sleep 30 && cd /home/pi/nxt && ./run.sh
In this example the Nxt server will startup on boot after a 30 second delay.