欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Linux 使用init命令实现关机,重启,切换模式

程序员文章站 2022-12-07 10:33:49
linux init命令 详解 reboot可能是每个用过linux的人都知道的命令,但有一个命令“init”才是命令中的精英。 最近有个同事学习安装了centos...

linux init命令 详解

reboot可能是每个用过linux的人都知道的命令,但有一个命令“init”才是命令中的精英。

最近有个同事学习安装了centos,明明安装的是带桌面的系统,但是启动后进入了命令行模式,搞不定了问到我,我执行了一下“init 5”,界面就出来了,那哥们顿时心生佩服,感觉好神奇。其实计算机这东西就是这样子,不会的就感觉好神奇,当你会了,也就是那么回事。

linux有个文件   /etc/inittab

# inittab    this file describes how the init process should set up  
#        the system in a certain run-level.  
#  
# author:    miquel van smoorenburg, <miquels@drinkel.nl.mugnet.org>  
#        modified for rhs linux by marc ewing and donnie barnes  
#  
# default runlevel. the runlevels used by rhs are:  
#  0 - halt (do not set initdefault to this)  
#  1 - single user mode  
#  2 - multiuser, without nfs (the same as 3, if you do not have networking)  
#  3 - full multiuser mode  
#  4 - unused  
#  5 - x11  
#  6 - reboot (do not set initdefault to this)  
#

id:3:initdefault:      

说明

0是关机
1是单用户
2是多用户,不联网
3是多用户
4是不使用的
5是xwindows,也就是有界面的
6是重启

用法

init命令很简单。直接输入init + 你想要的模式  回车就行。

比如 输入  :  init 0   就是关机

init 3  就是切换到多用户
init 5  就是切换到界面
init 6  就是重启

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!