Pour lancer un script au démarrage du système “proprement” (en utilisant systemd) :
1. créer un script et le placer dans /usr/local/bin
.
2. créer un fichier de configuration dans /etc/systemd/system/xxx.service
3. Y placer le contenu suivant :
[Unit] Description=Bypass Dell fan control Before=i8kmon.service [Service] ExecStart=/usr/local/bin/dell-bios-fan-control enable=1 Type=oneshot RemainAfterExit=yes [Install] WantedBy=multi-user.target
4. Lancer systemctl daemon-reload
5. Activer le service avec systemctl enable xxx.service
La doc : https://www.freedesktop.org/software/systemd/man/systemd.unit.html#Before=