shutdown
命令用于在 Linux 和 Unix 系统中安排系统关机或重启,你提供的命令shutdown -s -t 3600
具体含义如下:
shutdown
: 调用关机命令。
-s
: 表示关机(shutdown)。
-t 3600
: 设置倒计时时间为 3600 秒,即 1 小时。

这个命令的作用是安排系统在 1 小时后关机。
其他常用选项
-r
: 重新启动系统。shutdown -r now
会立即重启系统。
now
: 立即执行操作。shutdown -h now
会立即关机。
+m
: 指定分钟数。shutdown -h +10
会在 10 分钟后关机。
message
: 发送广播消息给所有登录用户。shutdown -h +10 "System will shut down in 10 minutes"
会在关机前通知用户。
示例
1、立即关机:
shutdown -h now
2、立即重启:
shutdown -r now
3、在 10 分钟后关机:
shutdown -h +10
4、在 1 小时后关机并发送通知:
shutdown -h +60 "The system will shut down in 60 minutes"
5、取消已安排的关机:
shutdown -c
使用这些命令需要管理员权限,因此可能需要在命令前加上sudo
,例如sudo shutdown -h now
。