Linux
Personnaliser
update-rc.d
Configurer et personnaliser les runlevels des services lancé au démarrage
Pour : Linux
La commande "update-rc.d" permet d'ajouter ou de supprimer des processus dans les différents runlevels.
Nous allons voir avec des exemples concret comment changer un runlevel.
Retirer un service au chargement du sytème
On va par exemple arrêter le lancement du service apache au démarrage de la machine.
En premier on affiche les liens contenu dans "/etc/rc2.d/":
ls -l /etc/rc2.d/ ... lrwxrwxrwx 1 root root 20 26 nov. 13:25 S17fancontrol -> ../init.d/fancontrol lrwxrwxrwx 1 root root 17 26 nov. 13:00 S17rsyslog -> ../init.d/rsyslog lrwxrwxrwx 1 root root 17 26 nov. 15:33 S18apache2 -> ../init.d/apache2 lrwxrwxrwx 1 root root 15 26 nov. 15:33 S19acpid -> ../init.d/acpid lrwxrwxrwx 1 root root 13 26 nov. 15:33 S19atd -> ../init.d/atd ...
update-rc.d -f apache2 remove
update-rc.d apache2 defaults
update-rc.d [nom_service] start [priorité] [runlevel] . stop [priorité] [runlevel] .
update-rc.d apache2 start 20 2 . stop 30 0 6 .