Ativar o rc.local no linux
Essas configurações foi feito em uma distro Debian.
sudo nano /etc/rc.local
Adicione o seguinte conteudo no arquivo
#!/bin/sh
# add your commands
sh /home/hsena/meuscript.sh
exit 0
sudo chmod -v +x /etc/rc.local
sudo systemctl is-enabled rc-local.service
sudo systemctl status rc-local.service
sudo systemctl enable rc-local.service
sudo reboot
sudo systemctl start rc-local.service
sudo systemctl status rc-local.service