Issue
I have an executable file a.out and I want to run it every time when my Pi board boots up? any suggestions how I can do it?
Solution
/etc/rc.local
says:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
Also, did you know about this board: https://raspberrypi.stackexchange.com/
Answered By - James Brown