Enviado em 25/04/2018 - 10:46h
Alguem sabe se é possível e como é pra botar um programa em C já compilado pra executar no boot no rc.local? Eu tenho um shell script do meu firewall em uma linha, e na linha debaixo to chamando o programa, que já está instalado, passando um parametro que é necessário pra ele funcionar:
#!/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.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/usr/local/bin/firewall.sh
/usr/bin/tiotserver enp0s3
exit 0