Linux 中的暂停、关机和重启命令
以下是halt、poweroff 和reboot 的典型用法。
- 停止:指示硬件停止 CPU 功能。
- poweroff :指示系统关闭电源。
- reboot :重新启动或重新启动系统。
上述命令只能由超级用户运行,因为这些命令涉及停止系统硬件的操作。如果用户不是以超级用户身份登录,则可以使用 sudo命令来运行这些命令。
停止命令
这会指示硬件停止所有 CPU 功能。
// syntax of halt command
halt [OPTION]...
可以简单地使用halt来停止、关闭和重启系统:
// Instructs hardware to stop CPU functions. halt
// power off the system halt -p
// reboots the system halt --reboot
应用
- 这让用户可以从命令行关闭系统。
- 使用halt 将停止所有CPU 功能,系统将进入用户可以进行低级别维护的状态。
关机命令
poweroff发送指示系统关闭电源的 ACPI 信号。这是 poweroff 命令的语法:
// syntax of poweroff
poweroff [OPTION]...
poweroff 可简单地用于停止、关闭和重新启动系统,如下所示:
// Powers off the system poweroff
// Halts the system poweroff --halt
// Reboots the system poweroff --reboot
重启命令
reboot命令指示系统重新启动或重新引导。以下是重启命令的语法:
// syntax of reboot
reboot [OPTION]...
重新启动可简单地用于停止、关闭和重新启动系统,如下所示:
// Halts the system reboot --halt
// Powers off the system reboot -p
// Reboots the system reboot