Execute um “java -jar file.jar” executado na inicialização

2

Olá, estou executando uma distribuição do kubuntu 13.10, mas acho que minha pergunta é bem geral ... como fazer um .jar executar em segundo plano no início do sistema?

    
por Phate 08.04.2014 / 18:20

1 resposta

4

Você pode colocar seu comando no arquivo /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.

java -jar file.jar &

exit 0
    
por 08.04.2014 / 18:26