How to run programms automatically at boot up in beaglebone black

Hello, I have three programms that should be run after booting up the beagle bone black. But now I want these programms run automatically after boot up. I use debian, I made a script that contained 3 commands to run that 3 programms but What should I do so as this script runs automatically after boot up?!

You should provide info on your Debian version, in oder to get matching input. Ie. post output from command

`
uname -a

`

Here: https://github.com/adafruit/adafruit-beaglebone-io-python/blob/master/doc/run_config-pin_during_startup.md

or…

Here: https://learn.adafruit.com/running-programs-automatically-on-your-tiny-computer/systemd-writing-and-enabling-a-service?view=all#systemd-writing-and-enabling-a-service

Seth

P.S. If you need anything else, type a message back to someone.

Hello. I used PM2 to do what you described and it worked very well. There’s also “Forever” that is recommended by the community, but I think PM2 is more complete.

PM2 Example:
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-16-04

https://www.digitalocean.com/community/tutorials/how-to-use-pm2-to-setup-a-node-js-production-environment-on-an-ubuntu-vps

FOREVER Example:
https://causeyourestuck.io/2016/04/30/run-node-js-script-startup/