Modprobe en el arranque - Debian
Para responder la pregunta específica sobre sudo modprobe snd_bcm2835
, agregue el módulo /etc/modules
y reinicie. (Necesitarás root
hacerlo para hacer esto).
Inicio de servicios - Debian
Debian usa initscripts para inicializar el sistema, y puede usarlos para ejecutar comandos arbitrarios. Debe instalar un script similar al siguiente en /etc/init.d
.
#! /bin/sh
# /etc/init.d/blah
#
# Some things that run always
touch /var/lock/blah
# Carry out specific functions when asked to by the system
case "$1" in
start)
echo "Starting script blah "
echo "Could do more here"
;;
stop)
echo "Stopping script blah"
echo "Could do more here"
;;
*)
echo "Usage: /etc/init.d/blah {start|stop}"
exit 1
;;
esac
exit 0
Debe asegurarse de que sea ejecutable y propiedad de root.
sudo chmod 755 /etc/init.d/blah
sudo chown root:root /etc/init.d/blah
Luego debe registrarlo para ejecutarlo al inicio.
sudo update-rc.d blah defaults
Referencias