关机
立即关机且不通知其他用户 shutdown -h now
取消关机 shutdown -c
十分钟后关机且通知其他用户 shutdown -h +10
使用自定义消息 shutdown -h +6 "time to stop working and go outside to play"
定时关闭 格式hh:mm shutdown -h 22:15
重启 shutdown -r
停止系统 不关闭电源 shutdown -H
Halt 正常关机并切断电源
停止服务以及进程并卸载文件系统 不关闭电源
Reboot 正常关机,并重启系统
Poweroff 正常关机并切断电源
挂起模式 systemctl suspend
休眠模式 systemctl hibernate
混合睡眠模式 Systemctl hybrid-sleep
挂起后休眠模式 Systemctl suspend-then-hibernate
P78