Ho para executar um comando após o boot [duplicado]

1

Eu quero executar um comando simples após o boot.

cd / mypath

então

./ mycommand

Como posso fazer isso?

Thnx

    
por Hassan 05.03.2018 / 14:26

1 resposta

0

Duas soluções:

O primeiro é colocar o caminho completo do comando em /etc/rc.local :

/mypath/mycommand

ou o modo cron:

crontab -e

@reboot cd /mypath;./mycommand

Do manual do crontab:

 @reboot        Run once, at startup.
    
por NerdOfLinux 05.03.2018 / 16:03