Herramientas de usuario

Herramientas del sitio


tutoriales:linux:systemd

Diferencias

Muestra las diferencias entre dos versiones de la página.

Enlace a la vista de comparación

Próxima revisión
Revisión previa
tutoriales:linux:systemd [2020/12/08 13:02]
admin ↷ Página movida de linux:systemd a tutoriales:linux:systemd
tutoriales:linux:systemd [2021/12/31 09:19] (actual)
admin [Crear un nuevo servicio]
Línea 4: Línea 4:
   * [[https://www.freedesktop.org/wiki/Software/systemd/|freedesktop.org: Documentación original y mas recursos]]   * [[https://www.freedesktop.org/wiki/Software/systemd/|freedesktop.org: Documentación original y mas recursos]]
   * [[https://www.freedesktop.org/wiki/Software/systemd/?#thesystemdforadministratorsblogseries|Serie de 21 artículos sobre systemd (Son un poco antiguos)]]   * [[https://www.freedesktop.org/wiki/Software/systemd/?#thesystemdforadministratorsblogseries|Serie de 21 artículos sobre systemd (Son un poco antiguos)]]
-  * {{:linux:ordenes:systemd:12052018_systemd_6.pdf|symtemd Cheat Sheet}}+  * {{ :tutoriales:linux:systemd_cheat_sheet.pdf |}}
   * Introducción a systemd y arranque de Linux   * Introducción a systemd y arranque de Linux
     * [[https://opensource.com/article/20/4/systemd|Learning to love systemd]]     * [[https://opensource.com/article/20/4/systemd|Learning to love systemd]]
Línea 14: Línea 14:
  
  
 +  * Recargar los ficheros de configuración
 +<sxh bash>
 +systemctl daemon-reload
 +</sxh>
  
 +  * Mostar los timers y cuando será la próxima ejecución
 +<sxh bash>
 +systemctl list-timers --all 
 +</sxh>
 +
 +  * Ver el log
 +<sxh bash>
 +journalctl -u my-service.service
 +</sxh> 
 +
 +  * Ver el log pero de forma continua
 +<sxh bash>
 +journalctl -u my-service.service -f
 +</sxh>
 +
 +===== Crear un nuevo servicio =====
 +  * Los fichero ''my-service.service'' se dejan en:
 +
 +<sxh base>
 +/etc/systemd/system
 +</sxh>
 +
 +  * Los scripts ''my-service.sh'' se dejan en:
 +
 +<sxh base>
 +/usr/local/sbin
 +</sxh>
tutoriales/linux/systemd.1607428959.txt.gz · Última modificación: 2020/12/08 13:02 por admin