24 lines
383 B
Markdown
24 lines
383 B
Markdown
# 关机
|
|
|
|
> 关闭系统。
|
|
> 更多信息:<https://www.manned.org/poweroff>。
|
|
|
|
- 关闭系统:
|
|
|
|
`poweroff`
|
|
|
|
- 停止系统(与 `halt` 相同):
|
|
|
|
`poweroff --halt`
|
|
|
|
- 重启系统(与 `reboot` 相同):
|
|
|
|
`poweroff --reboot`
|
|
|
|
- 立即关机,不联系系统管理器:
|
|
|
|
`poweroff --force`
|
|
|
|
- 仅写入 wtmp 关机条目,而不关闭系统:
|
|
|
|
`poweroff --wtmp-only` |