First create your startup script @ /home/user/startup.sh, and make it executable
chmod +x /home/user/startup.sh
Then set a crontab for it:
$ crontab -e
@reboot /home/user/startup.sh
Now your your startup.sh script will run at every start.
First create your startup script @ /home/user/startup.sh, and make it executable
chmod +x /home/user/startup.sh
Then set a crontab for it:
$ crontab -e
@reboot /home/user/startup.sh
Now your your startup.sh script will run at every start.