Linux学习笔记(六)关机、重启命令

2020-07-15 15:47:06 浏览数 (1)

  • sync
  • shutdown
  • reboot
  • init

sync

英文原意:flush file system buffers

功能:刷新文件系统缓冲区,将内存中的数据保存到硬盘中

语法:sync

shutdown

英文原意:bring the system down

功能:关机和重启

语法:shutdown 选项[-chr] 时间 [警告信息]

代码语言:javascript复制
shutdown -c    取消已经执行的shutdown命令

shutdown -h    关机
shutdown -h now    现在关机
shutdown -h 05:20    指定时间关机

shutdown -r    重启
shutdown -r now    现在重启
shutdown -r 05:20    指定时间重启,会占用前台终端
shutdown -r 05:20    把定时重启命令放入后台,&是后台的意思
shutdown -r  10    10分钟后重启

reboot

功能:重启

语法:reboot

init

(init是修改Linux运行级别的命令,也可用于关机和重启)

语法:init num

init一共分为7个级别,这7个级别的所代表的含义如下

代码语言:javascript复制

0:停机或者关机(千万不能将initdefault设置为0)
1:单用户模式,只root用户进行维护
2:多用户模式,不能使用NFS(Net File System)
3:完全多用户模式(标准的运行级别)
4:安全模式
5:图形化(即图形界面)
6:重启(千万不要把initdefault设置为6)

0 人点赞