Avvio automatico

  • adminAB76
  • Avatar di adminAB76 Autore della discussione
  • Amministratore
  • Amministratore
Di più
8 Anni 5 Mesi fa - 7 Anni 9 Mesi fa #104 da adminAB76
Avvio automatico è stato creato da adminAB76
Con PIXEL (derivato da LXDE) basta creare un file /home/pi/.config/autostart/file.desktop
con all'interno il seguente codice per avviare l'applicazione all'avvio (senza login!)
Code:
[Desktop Entry] Type=Application Exec=firefox-esr GenericName=Firefox Comment[en_GB]=Firefox browser Icon=background

================================ VECCHI SISTEMI ==================================================

Il sistema più semplice è utilizzare il file /etc/rc.local
Code:
#!/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. # Print the IP address sudo tightvncserver :1 sudo amuled -f exit 0

Oppure creare un programma di avvio di sistema:

Per l'autostart bisogna creare il programma di avvio:
/etc/init.d/esempio.sh
chmod +x 755
Code:
#! /bin/sh ### BEGIN INIT INFO # Provides: example # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Example initscript # Description: This file should be used to construct scripts to be # placed in /etc/init.d. ### END INIT INFO PROGRAMMA exit 0
e poi caricare il programma a sistema
Code:
update-rc.d $SCRIPT defaults

Se si mette l'avvio del programma alla fine del file /etc/profile l'avvio si ferma a quel programma...
la figata è che via ssh si apre il programma in remoto!!!
Ultima Modifica 7 Anni 9 Mesi fa da adminAB76.

Si prega Accesso a partecipare alla conversazione.