Linux - 关机重启相关命令

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/weixin_44198965/article/details/102772000
	// 关闭系统
	shutdown -h now
	
	// 立刻关机
	init 0
	
	// 系统立马重启
	shutdown -r now
	
	// 按预定时间关闭系统
	shutdown -h hours:minutes &
	
	// 10分钟后自动关机
	shutdown -h 10
	
	// 取消按预定时间关闭系统 
	shutdown -c
	
	// 重启系统
	shutdown -r now
	
	// 重启系统
	reboot
	
	// 注销
	logout

猜你喜欢

转载自blog.csdn.net/weixin_44198965/article/details/102772000
今日推荐