mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
c46487fe78
* Update systemctl-cat.md * Update systemctl-edit.md * Update systemctl-mask.md * Update systemctl-stop.md * Update systemctl-start.md * Update systemctl-enable.md * Update systemctl-status.md * Update systemctl-disable.md * Update systemctl-restart.md * Update systemctl-enable.md
385 B
385 B
systemctl enable
Enable systemd services. More information: https://www.freedesktop.org/software/systemd/man/systemctl.html#enable%20UNIT%E2%80%A6.
- Enable a service to run on boot:
systemctl enable {{unit}}
- Enable a service to run on boot and start it now:
systemctl enable {{unit}} --now
- Enable a user unit to run on login:
systemctl enable --user {{unit}}