1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 02:57:58 +01:00
tldr/pages/linux/systemctl.md

24 lines
402 B
Markdown
Raw Normal View History

2014-02-25 03:06:23 +01:00
# 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`