[systemd-sysv]. Systemd es un administrador del sistema y gestor de servicios compatible con SysV al que reemplaza.
# systemctl reboot
# systemctl poweroff
# systemctl suspend
# systemctl hibernate
# systemctl
# systemctl list-units
# systemctl --failed
# systemctl list-unit-files
# systemctl list-dependencies ssh.service
# systemctl start slim.service
# systemctl stop sshd.service
# systemctl restart apache2.service
# systemctl reload wicd.service
# systemctl status cron.service
# systemctl is-active ssh.service
# systemctl is-enabled cups
# systemctl is-failed mysql
# systemctl enable NetworkManager.service
# systemctl disable smbd.service
# systemctl daemon-reload
# systemctl isolate multi-user.target
# systemctl isolate graphical.target
# systemctl -r --type service --all
# systemctl --type=service --state=running
# systemctl --type=service --state=running | grep cups.service
# systemctl --type=service --state=failed,exited
1.-
Para incorporar el arranque a grub2, modificar del archivo:
# nano /etc/default/grub
La linea:
GRUB_CMDLINE_LINUX_DEFAULT="quiet init=/bin/systemd"
2.-
Para que al bajar la tapa de un portatil el sistema no se suspenda.
# nano /etc/systemd/logind.conf
Y modificar la linea:
HandleLidSwitch=ignore
3.-
Para cambiar el nivel de ejecución predeterminado del sistema, que con sysvinit se hacía editando /etc/inittab y modificando la linea id:5:initdefault:, con systemd se hace:
# ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
4.-
Para acelerar el proceso de inicio y finalización:
# /etc/systemd/system.conf
Y descomentar y modificar las lineas siguientes de 90 segundos a 10:
DefaultTimeoutStartSec=10s
DefaultTimeoutStopSec=10s