mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* linux/rm: update Korean translation * linux/r*: add Korean translation * rpicam-raw: fix typo
24 lines
482 B
Markdown
24 lines
482 B
Markdown
# reboot
|
|
|
|
> 시스템을 재부팅합니다.
|
|
> 더 많은 정보: <https://manned.org/reboot.8>.
|
|
|
|
- 시스템 재부팅:
|
|
|
|
`reboot`
|
|
|
|
- 시스템 전원 끄기 (`poweroff`와 동일):
|
|
|
|
`reboot --poweroff`
|
|
|
|
- 시스템 중지 (모든 프로세스를 종료하고 CPU를 셧다운) (`halt`와 동일):
|
|
|
|
`reboot --halt`
|
|
|
|
- 시스템 관리자를 거치지 않고 즉시 재부팅:
|
|
|
|
`reboot --force`
|
|
|
|
- 시스템을 재부팅하지 않고 wtmp 종료 항목 기록:
|
|
|
|
`reboot --wtmp-only`
|