Systemd

systemctl suspend
systemctl hibernate
 
pmi action suspend
pmi action hibernate

systemd-analyze

systemd-analyze
systemd-analyze blame
systemd-analyze plot > /tmp/plot.svg

systemd-bootchart

Process info

systemd-cgls
pstree

Kill process

# SIGTERM
systemctl kill service-name.service
 
# SIGKILL
systemctl kill -s SIGKILL service-name.service
 
# HUP
systemctl kill -s HUP --kill-who=main service-name.service