Linux教程

Linux 常用命令—关机、重启、注销

本文主要是介绍Linux 常用命令—关机、重启、注销,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

关机
shutdown -h now (即刻关机)

shutdown-h 10 (10分钟后关机)

shutdown -h 11:00 (11:00关机)

shutdown-h +10 (预定时间关机(10分钟后))

shutdown -c (取消指定时间关机)

init 0 (立刻关机)

telinit 0 (关机)

poweroff (关机)

halt (关机)

注销

sync (buff数据同步到磁盘)

logout (退出登录Shell)

重启

shutdown -r now (重启)

reboot (重启)

init 6 (重启)

shutdown-r 12:00 (定时重启)

shutdown-r 5 (五分钟后重启)

这篇关于Linux 常用命令—关机、重启、注销的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!