1. 关机前准备 1.1 查看有谁在线 who 1.2 查看网络联机状态 netstat -a 1.3 查看后台正在执行的程序 ps -aux 1.4 向所有在线用户发出警告信息 shutdown -k now 'haha, this server will ...........' 1.5 将数据同步写入硬盘 sync;sync; 2. 关机命令 shutdown -h now //立刻关机 shutdown -h 20:23 //指定关机时间 shutdown -h +10 //10分钟后关…