mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
527 B
Plaintext
23 lines
527 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# systemctl unmask
|
|
|
|
> Unmask units to make them startable again.
|
|
> This undoes the effect of `systemctl mask`.
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/systemctl.html#unmask%20UNIT%E2%80%A6>.
|
|
|
|
- Unmask a service:
|
|
|
|
`systemctl unmask {{service_name}}`
|
|
|
|
- Unmask and start a service immediately:
|
|
|
|
`systemctl unmask {{service_name}} --now`
|
|
|
|
- Unmask a user service:
|
|
|
|
`systemctl unmask {{service_name}} --user`
|