mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
527 B
Plaintext
22 lines
527 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# systemctl reset-failed
|
|
|
|
> Reset the "failed" state of one or more units.
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#reset-failed%20%5BPATTERN%E2%80%A6%5D>.
|
|
|
|
- Reset the failed state of all units:
|
|
|
|
`systemctl reset-failed`
|
|
|
|
- Reset the failed state of a specific unit:
|
|
|
|
`systemctl reset-failed {{unit}}`
|
|
|
|
- Reset multiple units at once:
|
|
|
|
`systemctl reset-failed {{unit_1 unit_2 ...}}`
|