per impostare l'avvio di un demone al boot, su slack è sufficiente impostare il flag eseguibile sul relativo script.
Esempio:
verifichiamo che il servizio http parta all'avvio del sistema:
$ ls -l /etc/rc.d/rc.httpd
-rw-r--r-- 1 root root ... /etc/rc.d/rc.httpd
Per farlo partire al boot:
# chmod +x /etc/rc.d/rc.httpd
$ ls -l /etc/rc.d/rc.httpd
-rwxr-xr-x 1 root root ... /etc/rc.d/rc.httpd
Per farlo partire momentaneamente, ma non al boot:
# bash /etc/rc.d/rc.httpd start
In luogo di start, usare stop|restart per fermare, riavviare il servizio.

ciao