Enviado em 20/03/2018 - 14:19h
Bom dia, gostaria de acionar um programa na inicialização do UBUNTU, já tentei de diversas formas, porém, todas sem sucesso! Sendo necessário inserir manualmente o comando em cada máquina que eu configurar.
sudo touch /etc/init.d/iniciax11vnc &&
sudo cat << EOF > /etc/init.d/iniciax11vnc
x11vnc -auth /var/run/lightdm/root/:0 -noxrecord -noxfixes -noxdamage -rfbauth /etc/x11vnc.pass -forever -bg -rfbport 5900 -o /tmp/x11vnc.log
EOF
chmod 777 /etc/init.d/iniciax11vnc &&
update-rc.d iniciax11vnc defaults &&
sudo cat << EOF > /etc/rc.local
#!/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.
x11vnc -auth /var/run/lightdm/root/:0 -noxrecord -noxfixes -noxdamage -rfbauth /etc/x11vnc.pass -forever -bg -rfbport 5900 -o /tmp/x11vnc.log
exit 0
EOF