Linux,FreeBSD下的几个关机、重启命令

 
1 )、测试环境是主机 XP 下的虚拟机 Red hat Linux 9.0 bash shell
 
关机同时电源灯会熄灭了:
# init 0
# poweroff
# shutdown -h now
 
关机但是电源等不熄灭:
# halt
 
系统重启:
# init 6
# shutdown -r now
# reboot
 
2 )、下面是 FreeBSD 的测试结果 (c shell)
 
关机同时电源灯熄灭:
# init 0
 
关机但是电源灯不熄灭:
# shutdown -h now
# halt
 
系统重启:
# init 6
# shutdown -r now
# reboot

你可能感兴趣的:(unix/linux)