1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/systemctl.md
코드싸이 16f2c3ed79
shnsplit: fix typo, systemctl: update Korean translation, linux/s*: add Korean translation (#14715)
* linux/s*: add Korean translation

* systemctl: update Korean translation

* Update pages.ko/linux/sqfscat.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/shar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/sqfstar.md

Co-authored-by: Chooooo <contact@choo.ooo>

* shnsplit: fix typo

* semanage: update Korean translation

---------

Co-authored-by: Chooooo <contact@choo.ooo>
2024-11-11 15:05:30 +09:00

36 lines
997 B
Markdown

# systemctl
> systemd 시스템 및 서비스 관리자를 제어합니다.
> 더 많은 정보: <https://www.freedesktop.org/software/systemd/man/systemctl.html>.
- 실행 중인 서비스 모두 표시:
`systemctl status`
- 실패한 유닛 나열:
`systemctl --failed`
- 서비스 시작/중지/재시작/재로드/상태 표시:
`systemctl {{start|stop|restart|reload|status}} {{유닛}}`
- 부팅 시 시작할 유닛 활성화/비활성화:
`systemctl {{enable|disable}} {{유닛}}`
- systemd를 재로드하고 새 유닛 또는 변경된 유닛 검색:
`systemctl daemon-reload`
- 유닛이 활성/활성화됨/실패했는지 확인:
`systemctl {{is-active|is-enabled|is-failed}} {{유닛}}`
- 실행 중이거나 실패한 상태로 필터링하여 모든 서비스/소켓/자동 마운트 유닛 나열:
`systemctl list-units --type={{service|socket|automount}} --state={{failed|running}}`
- 유닛 파일의 내용 및 절대 경로 표시:
`systemctl cat {{유닛}}`