引言:
Linux操作系统基本功能包括,系统关机/重启、文件系统、用户/用户组管理、网络管理、进程管理、内存管理、系统日志管理等功能。以下几篇将按照顺序更新这些基本功能。
系统关机/重启功能
(1)关机
shutdown –h 0 //0秒后关机
shutdown –h now //现在关机
shutdown –h 10 // 10分钟后关机
shutdown -h 23:20 // 23:20分关机
shutdown-c //取消 shutdown关机命令
init0 //立马关机(切换运行级别为0,推荐使用)
halt //立马关机
poweroff //立马关机
(2)重启
reboot //立马重启(推荐使用)
init6 //立马重启(切换运行级别为6,推荐使用)
(3)注销
logout //立马注销
exit //立马注销