Para agregar rápidamente un script o comando al inicio del sistema operativo en versiones anteriores de Debian, se usaba el archivo /etc/rc.local, en versiones recientes este archivo ya no funciona. A veces es necesario agregar rápidamente algún comando al inicio del sistema operativo. Para habilitar esta funcionalidad, haga lo siguiente:
1. Vamos a crear un archivo de servicio:
#vi /etc/systemd/system/rc-local.service
[Unit]
Description=/etc/rc.local
ConditionPathExists=/etc/rc.local
[Service]
Type=idle
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target
2. Creamos el archivo /etc/rc.local
vi /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.
exit 0
3. Asignar derechos de ejecución:
chmod +x /etc/rc.local
4. Agreguemos un servicio para iniciar automáticamente:
systemctl enable rc-local
5. Iniciamos el servicio:
systemctl start rc-local
6. Comprobemos el estado:
systemctl status rc-local
Ahora puede agregar los comandos o scripts necesarios al archivo /etc/rc.local antes de la linea exit 0.