Como fazer um script rodar na inicialização?

0

Eu tenho um VNC configurado com meu telefone porque eu uso o Linux para algumas coisas que o Android não pode fazer. Eu gostaria de saber como reiniciar o computador do meu telefone sem ter que ir ao meu computador e digitar fisicamente os comandos.

sudo -s

export DISPLAY =: 0.0

xhost +

/ usr / lib / vino / vino-server & amp;

Eu tentei o Google, mas não consegui encontrar nada, qualquer ajuda seria legal.

eu fiz o terminal, mas não deu certo parece com isso

#!/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.
/home/jonluke/SSH.sh &
exit 0
~                                                                               
~                                                                               
~                                                                               
~                                                                               
~                                                                               
~                                                                               
~                                                                               
~                                                                               
~                                                
    
por Jonluke Biddle 15.04.2017 / 13:58

1 resposta

2

Se você quiser iniciar o VNC na inicialização, salve seu script em um local no disco como .sh , execute chmod a+x yourscriptname em um terminal (para torná-lo executável) e adicione-o a /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.

/path/to/your/script &

exit 0

Observe o & à direita e o exit 0 final; isso executará o script e continuará o processo de inicialização e não bloqueará nada.

    
por Foxie 15.04.2017 / 14:02