nano:
调出帮助:F1或者Ctrl+G
^代表Ctrl,M代表Alt
关机:应有的步骤
检查系统使用状态:
who :检查在线用户
netstat -a:检查网络连接
ps -aux :检查后台程序执行情况
通知在线用户关机时间:shutdown命令
数据写入硬盘:sync
关机或重启:shutdown / restart / halt / poweroff / init 0
shutdown -h now :立即关机
shutdown -h 20:25 : 20:25分关机
shutdown -h +10 : 10分钟后关机
shutdown -r now : 马上重启
shutdown -r 30 'xxxxxxx' : 30分钟后重启系统,显示xxxxx给在线用户
shutdown -k now 'xxxxxx' : 只发出消息,并不真正重启/关机
init : 0级别为关机,6级别为重启
转载于:https://blog.51cto.com/6160859/1684591