Files
tldr/pages/linux/systemctl-disable.md
T
Managor c46487fe78 systemctl-*: add user unit examples (#18007)
* 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
2025-09-07 16:32:59 -07:00

420 B

systemctl disable

Disable systemd services. More information: https://www.freedesktop.org/software/systemd/man/systemctl.html#disable%20UNIT%E2%80%A6.

  • Stop a service from running on boot:

systemctl disable {{unit}}

  • Stop a service from running on boot and stop its current execution:

systemctl disable {{unit}} --now

  • Stop a user service from running on login:

systemctl disable --user {{unit}}