关机命令之shutdown/poweroff,重启系统命令reboot,挂起系统命令halt
关机命令之shutdown/poweroff,重启系统命令reboot,挂起系统命令halt0.shutdown 应以root用户的身份执行
在一分钟后关闭系统 $shutdown -h 1
在一秒后关闭系统 $shutdown -t 1
立即关闭系统 $shutdown -h now
将系统的服务停掉后,立即关机 $ shutdown -h
指定时间关系系统 $ shutdown -h 24:00
在将系统的服务停掉之后就重新开机 $shutdown -r
2分钟后重启系统 $shutdown -r 2
不是真的关机,只是发送警告讯息出去 $shutdown -k “This computer will reboot”
不经过init程序,直接以shutdown的功能来关机 $shutdown -n
1.poweroff
立即关闭系统 $poweroff
2.重启系统命令reboot
与shutdown -r now几乎相同
3.挂起系统命令halt:系统停止运行而不会切断主机电源
在执行这些命令前,最好多执行几次sync,将内存的内容写入到硬盘。
页:
[1]