Chkconfig--chkconfig 结果中的 0-6 是什么意思?

Chkconfig--chkconfig 结果中的 0-6 是什么意思?

chkconfig 结果中的 0-6 是什么意思?

例子

chkconfig --list|grep iptables
iptables        0:off   1:off   2:on    3:on    4:on    5:on    6:off

答案1

不同的数字与该服务的不同运行级别相对应。

ID      Name                Description
---------------------------------------
0       Halt                Shuts down the system.
1       Single-user Mode    Mode for administrative tasks.
2       Multi-user Mode     Does not configure network interfaces and does not export networks services.
3       Multi-user Mode with Networking     Starts the system normally.
4       Not used/User-definable     For special purposes.
5       Start the system normally with appropriate display manager. (with GUI)  Same as runlevel 3 + display manager.
6       Reboot              Reboots the system.

维基百科如果您需要更具体的信息,对不同的运行级别进行了详细的解释(它们的含义也可能因基本系统的不同而不同)。

答案2

这些是系统 V运行级别

答案3

这些数字表示运行级别决定在启动时执行哪个进程或程序。所有这些都在 /etc/inittab 中定义。Linux 发行版有七个不同的运行级别,在启动时,init 进程会检查正在运行哪个运行级别,并在此基础上执行进程和服务。在引导过程中,init 是最后一步,负责执行服务。

运行级别是一种系统状态,通常可以通过在它们之间切换来完成 Linux 的高级管理。

相关内容