Quote:
Originally Posted by arushshah1
How can I run a program on startup?
|
Well, the Jetson eLinux (which I've never used) is basically Ubuntu 14.04 (which I do use) so I'd guess add it to the /etc/rc.local script before it reaches the "exit 0" line.
/path/to/program.py &
The ampersand disconnects it from the terminal and lets it run the background.