用户在线?
- finger 查看用户在线列表
理性关机 😄
- 当前其他用户在线的情况下. 可以通知
/// 通知在线用户即将关机.
~$ shutdown -k "Service Will Shutdown!."
- 当前其他用户不在线的情况下. 执行关机指令.
/// 将临时数据写入磁盘
~$ sync
/// 立即关机
~$ shutdown -h now
# or
/// 10 秒钟 后关机
~$ shutdown -t 10 -h now "System will shutdown 10 sencond later"
/// 5 分钟 后关机
~$ shutdown +5 "System will shutdown 5 minutes later"