systemd

Mas apuntes de systemd:

Validar el estado de un servicio:

# systemctl status $NOMBRESERVICIO

Iniciar servicio:

# systemctl start $NOMBRESERVICIO

Detener servicio:

# systemctl stop $NOMBRESERVICIO

Habilitar un servicio al inicio del sistema:

# systemctl enable $NOMBRESERVICIO

Deshabilitar un servicio al inicio del sistema:

# systemctl disable $NOMBRESERVICIO

Listar todos los servicios disponibles en systemd:

systemctl -t service