mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 17:17:56 +01:00
408 B
408 B
systemctl
Control the systemd system and service manager.
- List failed units:
systemctl --failed
- Start/Stop/Restart a service:
systemctl start/stop/restart {{unit}}
- Show the status of a unit:
systemctl status {{unit}}
- Enable/Disable a unit to be started on bootup:
systemctl enable/disable {{unit}}
- Reload systemd, scanning for new or changed units:
systemctl daemon-reload