`

linux启动级别

 
阅读更多

一、启动级别

1、查看linux 系统默认启动级别
cat /etc/inittab
id:3:initdefault: ##可以看出默认为三

2、查看某一服务在各个启动级别上是否启动
[root@localhost ~]# chkconfig --list  nfs
nfs             0:off   1:off   2:off   3:off   4:off   5:off   6:off

3、在Linux中有7种启动级别
分别为:
#   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)
各个运行级的详细解释:
0 为停机,机器关闭。
1 为单用户模式,就像Win9x下的安全模式类似。
2 为多用户模式,但是没有NFS支持。
3 为完整的多用户模式,是标准的运行级。
4 一般不用,在一些特殊情况下可以用它来做一些事情。例如在笔记本电脑的电池用尽时,可以切换到这个模式来做一些设置。
5 就是X11,进到X Window系统了。
6 为重启,运行init 6机器就会重启。

0和6一般不用;


二、 chkconfig

说明 :linux 的所有服务都在 /etc/init.d/  下, 但是 /etc/init.d  是 链接的 /etc/rc.d/init.d
       同样 /etc/rc[0-6].d 都是连接的相应的 /etc/rc.d/rc[0-6].d ,不同启动级别的 rc[0-6].d 中的服务都是 链接的 /etc/init.d 下的相应服务、chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。
  语法:
    chkconfig --list [name]
    chkconfig --add name
    chkconfig --del name
    chkconfig [--level levels] name <on|off|reset>
    chkconfig [--level levels] name

    chkconfig 没有参数运行时,显示用法。如果加上服务名,那么就检查这个服务是否在当前运行级启动。如果是,返回true,否则返回false。如果在服务名后面指定了on,off或者reset,那么chkconfi 会改变指定服务的启动信息。on和off分别指服务被启动和停止,reset指重置服务的启动信息,无论有问题的初始化脚本指定了什么。on和off开关,系统默认只对运行级2,3,4,5有效,但是reset可以对所有运行级有效。
    --level选项可以指定要查看的运行级而不一定是当前运行级。
    需要说明的是,对于每个运行级,只能有一个启动脚本或者停止脚本。当切换运行级时,init不会重新启动已经启动的服务,也不会再次去停止已经停止的服务。

2、 chkconfig --list :显示所有运行级系统服务的运行状态信息(on或off)。如果指定了name,那么只显示指定的服务在不同运行级的状态。

    chkconfig --add name:增加一项新的服务。chkconfig确保每个运行级有一项启动(S)或者杀死(K)入口。如有缺少,则会从缺省的init脚本自动建立。

    chkconfig --del name:删除服务,并把相关符号连接从/etc/rc[0-6].d删除。

    chkconfig [--level levels] name <on|off|reset>:设置某一服务在指定的运行级是被启动,停止还是重置。例如,要在3,4,5运行级停止nfs服务,则命令如下:
    chkconfig --level 345 nfs off

3、举例sendmail:

1)cat /etc/inittab
id:3:initdefault:

2)chkconfig --list  sendmail
sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off
查看连接 :

ll /etc/rc0.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov  5 23:43 K30sendmail -> ../init.d/sendmail
ll /etc/rc1.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov  5 23:43 K30sendmail -> ../init.d/sendmail
ll  /etc/rc2.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov  5 23:43 S80sendmail -> ../init.d/sendmail
ll /etc/rc3.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov  5 23:43 S80sendmail -> ../init.d/sendmail
ll /etc/rc4.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov  5 23:43 S80sendmail -> ../init.d/sendmail
ll /etc/rc5.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov  5 23:43 S80sendmail -> ../init.d/sendmail
 ll /etc/rc6.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov  5 23:43 K30sendmail -> ../init.d/sendmail

3)chkconfig --del  sendmail
   [root@localhost init.d]# chkconfig --list  sendmail
service sendmail supports chkconfig, but is not referenced in any runlevel (run 'chkconfig --add sendmail')
查看连接
[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail
[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail
[root@localhost init.d]# ll /etc/rc1.d/ |grep sendmail
[root@localhost init.d]# ll /etc/rc2.d/ |grep sendmail
[root@localhost init.d]# ll /etc/rc3.d/ |grep sendmail
[root@localhost init.d]# ll /etc/rc4.d/ |grep sendmail
[root@localhost init.d]# ll /etc/rc5.d/ |grep sendmail
[root@localhost init.d]# ll /etc/rc6.d/ |grep sendmail
[root@localhost init.d]#  ---》 全为空

4)
[root@localhost init.d]# chkconfig --add  sendmail
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off

查看连接:
[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail

[root@localhost init.d]# ll /etc/rc1.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc2.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 S80sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc3.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 S80sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc4.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 S80sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc5.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 S80sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc6.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail  ----》 相应的服务连接又回来了

5)chkconfig   sendmail  off  --》on和off分别指服务被启动和停止,reset指重置服务的启动信息,无论有问题的初始化脚本指定了什么。on和off开关,系统                                  默认只对运行级3,4,5有效,但是reset可以对所有运行级有效
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off

查看连接:
[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc1.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc2.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:36 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc3.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:36 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc4.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:36 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc5.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:36 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc6.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail  ---》全是 "K"

6)chkconfig   sendmail  on
[root@localhost init.d]# chkconfig --list  sendmail

sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off

查看连接:
[root@localhost init.d]# ll /etc/rc0.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc1.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc2.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:40 S80sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc3.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:40 S80sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc4.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:40 S80sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc5.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:40 S80sendmail -> ../init.d/sendmail
[root@localhost init.d]# ll /etc/rc6.d/ |grep sendmail
lrwxrwxrwx 1 root root 18 Nov 10 23:33 K30sendmail -> ../init.d/sendmail  --》2,3,4,5 为“S” 其他为 K

7)
chkconfig   sendmail  off
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off
[root@localhost init.d]# chkconfig --level 3  sendmail  on
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:off   1:off   2:off   3:on    4:off   5:off   6:off
[root@localhost init.d]# chkconfig --level 0  sendmail  on
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:on    1:off   2:off   3:on    4:off   5:off   6:off  --》 看来 得用level on 参数控制 0级别

[root@localhost init.d]# chkconfig   sendmail  off
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:on    1:off   2:off   3:off   4:off   5:off   6:off  --》 但是这样3 级别关了 0 级别没关掉

[root@localhost init.d]# chkconfig --level 0  sendmail  off
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off  --》 0 级别关掉了 (经验证1,6级别 也是这样的和0级别一样 得用level控制)

8)
[root@localhost init.d]# chkconfig   sendmail  off
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off
[root@localhost init.d]# chkconfig   sendmail  reset
[root@localhost init.d]# chkconfig --list  sendmail
sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off --》 reset指重置服务的启动信息 可以对所有运行级有效 (没太懂这个东西reset)

分享到:
评论

相关推荐

    linux启动级别的含义.pdf

    Linux启动级别是操作系统启动过程中的一个重要概念,它定义了系统启动后所处的状态和服务的集合。在Linux系统中,启动级别通常由数字0到6表示,每个级别对应着不同的系统功能和用途: 0:这个级别表示系统停机或...

    linux启动级别的含义(init 0-6)

    0:停机1:单用户形式,只root进行维护2:多用户,不能使用net file system3:完全多用户5:图形化4:安全模式6:重启 其实,可以通过查看/etc/rc.d... 您可能感兴趣的文章:Linux 使用init命令实现关机,重启,切换模式

    Linux的默认启动级别及各级别的作用

    ### Linux的默认启动级别及各级别的作用 在深入探讨Linux的启动级别之前,我们先来了解下什么是Linux的启动级别。Linux系统通过不同的运行级别来控制系统的启动过程和可用服务的状态。这些级别定义了系统启动时应...

    Linux启动过程、运行级别及相关命令

    Linux系统管理是IT运维中的...总的来说,了解Linux启动过程和运行级别,以及如何使用相关命令进行管理,对于日常的系统维护和问题排查至关重要。这些知识不仅帮助我们更好地理解系统行为,也能提高故障排除和优化效率。

    Linux启动运行级别&chkconfig&crontab.pdf

    首先,Linux启动运行级别(Runlevel)是系统在不同状态下的工作模式,主要用于控制哪些服务应该启动。Linux有7个不同的运行级别,每个级别都有特定的功能: - 0:关机或重启 - 1:单用户模式,用于维护和修复 - 2:...

    Linux应用技术:Linux启动过程.pptx

    在不同的运行级别,根据系统的设置启动相应的服务程序(不同运行级别,启动的服务程序有所不同) 启动Shell,显示登录信息 inittab文件 运行级别: # 0 - halt # 1 - Single user mode # 2 - Multiuser, without NFS ...

    Linux启动过程综述

    ### Linux启动过程综述 #### 一、引言 Linux是一种开源的操作系统,以其高度的稳定性和安全性在服务器领域有着广泛的应用。对于深入理解Linux系统的行为及其管理来说,掌握Linux的启动过程至关重要。本文旨在详细...

    Linux启动流程3-3

    总结起来,“Linux启动流程3-3”主要关注的是在传统SysV启动机制下的服务启动过程,这包括init进程的启动,服务脚本的执行,以及运行级别的切换。虽然现在许多系统已经转向systemd,但SysV启动流程的知识对于理解和...

    经典—详解嵌入式linux启动信息_经典

    嵌入式Linux启动过程是操作系统运行的起点,它涉及到硬件初始化、内核加载、设备驱动启动等一系列复杂步骤。本文将深入解析这一经典话题,帮助读者理解Linux系统如何从零开始,一步步走向运行状态。 首先,启动流程...

    Linux 的启动流程

    Linux操作系统的启动流程是指从计算机开启电源到操作系统完全启动并可以进行操作的整个过程。这个流程可以分为多个步骤,每个步骤都是启动过程中不可或缺的部分,涉及了从硬件的初始化到内核的加载,再到系统服务的...

    Linux启动及配置

    ### Linux启动及配置详解 #### 引言 Linux作为全球广泛使用的开源操作系统,其启动过程与配置机制一直是IT专业人士关注的焦点。理解Linux如何从一个静默的机器状态转变成一个功能完备的操作环境,不仅有助于深入...

    修改linux系统默认启动级别.docx

    ### 修改Linux系统默认启动级别 #### 背景与意义 在Linux系统中,不同的启动级别对应着不同的系统运行状态。这些级别的设定对于系统管理员来说非常重要,因为它们直接影响到服务器或工作站启动后的运行环境。例如...

    Arm-linux 自定义开机启动程序,避开从桌面启动

    这里的`2`表示命令行界面启动级别。 - 编辑`/etc/init/lightdm.conf`文件,将`and runlevel[!06]`改为`and runlevel[!026]`,这样系统就不会启动到默认的图形界面。 完成以上步骤后,系统重启时将会直接进入命令行...

    arm linux系统启动流程

    ### ARM Linux系统启动流程详解 #### 一、加载内核 ARM Linux系统启动的第一步是加载内核。当系统上电后,Bootloader(相当于PC中的BIOS)将完成最基础的硬件初始化,并加载内核镜像到内存中。内核镜像通常存储在...

    LINUX 启动故障修复

    在单用户模式(运行级别 1)中,Linux 引导进入根 shell,网络被禁用,只有少数进程运行。单用户模式可以用来修改文件系统损坏、还原配置文件、移动用户数据等。 单用户模式修复系统故障的典型案例包括: 1. 硬盘...

    详解嵌入式linux启动信息

    嵌入式Linux启动过程是操作系统在硬件平台上初始化并运行的过程,这一过程对于系统开发者和调试者来说至关重要。本文将深入探讨嵌入式Linux的启动流程,解析其中的关键步骤和技术细节。 1. **BIOS/Bootloader阶段**...

    Linux启动界面切换图形界面

    ### Linux启动界面切换:图形界面与字符界面的深入解析 #### 概述 在Linux操作系统中,用户可以选择在启动时进入图形界面或字符界面。这一灵活性不仅满足了不同场景下的需求,也为用户提供了多样化的操作体验。...

Global site tag (gtag.js) - Google Analytics