===cree un service avec systemd=== Créer un fichier nom.service dans /etc/systemd/system/ avec le contenu si dessous : ``` [Unit] Description=Nom Service After=tlp-init.service [Service] Type=oneshot RemainAfterExit=no ExecStart=/usr/bin/nom-service.ksh [Install] WantedBy=multi-user.target Démarrage du service : ``` ``` systemctl start nom.service ``` Activation du service au démarrage : ``` systemctl enable startup.service ``` {{tag> linux service systemd }}