How can I run my Python WebSocket Client as background service in Arduino yun
What is the best/ simple way to do this. my Python program needs to start when I start my arduino.
( I am just beginning in Python and Linux )
I know you both are good at this. I truly appreciate any help on this
Putting commands in /etc/rc.local causes them to be run at the end of the boot process. You will need to deal with the time it takes for any service your script needs to be available, for example Wifi takes a while to connect to the AP.
Adding "&" to the end of a command in ash causes the command to be run in the background.