首頁 > 軟體

在Linux中檢查當前執行級別的五種方法?

2020-06-16 16:35:56

執行級就是Linux作業系統當前正在執行的功能級別。存在七個執行級別,編號從0到6。系統可以引導到任何給定的執行級別。執行級別由數位標識。

每個執行級別指定不同的系統設定,並允許存取不同的行程群組合。預設情況下,Linux會引導至執行級別3或執行級別5。啟動時一次只執行一個執行級別。它不會一個接一個地執行。

系統的預設執行級別在SysVinit系統的/etc/inittab檔案中指定。

但是systemd系統不讀取此檔案,它使用以下檔案/etc/systemd/system/default.target來獲取預設的執行級別資訊。

我們可以使用以下五種方法檢查Linux系統當前執行級別。

  • runlevel命令:runlevel列印系統的上一個和當前執行級別。
  • who命令:列印有關當前登入使用者的資訊。它將使用“-r”選項列印執行級別資訊。
  • systemctl命令:它控制systemd系統和服務管理器。
  • 使用/etc/inittab檔案:系統的預設執行級別在SysVinit System的/etc/inittab檔案中指定。
  • 使用/etc/systemd/system/default.target檔案:系統的預設執行級別在systemd System的/etc/systemd/system/default.target檔案中指定。

詳細的執行級別資訊在下表中描述。

執行級別

SysVinit系統

systemd系統

0

關閉或暫停系統

shutdown.target

1

單使用者模式

rescue.target

2

多使用者,沒有NFS

multi-user.target

3

完全多使用者模式

multi-user.target

4

沒用過

multi-user.target

5

X11(圖形化使用者介面)

graphical.target

6

重新啟動系統

reboot.target

系統將根據執行級別執行程式/服務。

1、對於SysVinit系統,它將從以下位置執行:

執行級別0 - /etc/rc.d/rc0.d/

執行級別1 - /etc/rc.d/rc1.d/

執行級別2 - /etc/rc.d/rc2.d/

執行級別3 - /etc/rc.d/rc3.d/

執行級別4 - /etc/rc.d/rc4.d/

執行級別5 - /etc/rc.d/rc5.d/

執行級別6 - /etc/rc.d/rc6.d/

2、對於systemd系統,它將從以下位置執行:

runlevel1.target – /etc/systemd/system/rescue.target

runlevel2.target – /etc/systemd/system/multi-user.target.wants

runlevel3.target – /etc/systemd/system/multi-user.target.wants

runlevel4.target – /etc/systemd/system/multi-user.target.wants

runlevel5.target – /etc/systemd/system/graphical.target.wants

1、使用runlevel命令

runlevel列印系統的上一個和當前執行級別:

[linuxidc@localhost linuxidc.com]$ runlevel
N 5

1]、N:“N”表示自系統啟動後執行級別尚未更改。

2]、5:“5”表示系統的當前執行級別。

2、使用who命令

列印有關當前登入使用者的資訊,它將使用-r選項列印執行級別資訊:

[linuxidc@localhost linuxidc.com]$ who -r
        執行級別 5 2019-05-20 01:29

3、使用systemctl命令

systemctl用於控制systemd系統和服務管理器,systemd是Unix作業系統的系統和服務管理器。它可以作為sysvinit系統的直接替代品,systemd是核心啟動並保持PID 1的第一個進程。systemd使用.service檔案而不是bash指令碼(SysVinit使用),systemd將所有守護行程排序到他們自己的Linux cgroup中,可以通過瀏覽/cgroup/systemd檔案來檢視系統層次結構:

[linuxidc@localhost linuxidc.com]$ systemctl get-default
graphical.target

4、使用/etc/inittab檔案

系統的預設執行級別在SysVinit System的/etc/inittab檔案中指定,但systemd不讀取檔案,因此,它僅適用於SysVinit系統而不適用於systemd系統。

CentOS 6是通過修改/etc/inittab來修改預設執行級別的:

[root@localhost ~]# vim /etc/inittab

# inittab is only used by upstart for the default runlevel.
# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
# System initialization is started by /etc/init/rcS.conf
# Individual runlevels are started by /etc/init/rc.conf
# Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf
# Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf,
# with configuration in /etc/sysconfig/init.
# For information on how to write upstart event handlers, or how
# upstart works, see init(5), init(8), and initctl(8).
# Default runlevel. The runlevels used 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:5:initdefault:

在CentOS 7下執行vim /etc/inittab結果如下:

[linuxidc@localhost linuxidc.com]$ vim /etc/inittab

# inittab is no longer used when using systemd.
#
# ADDING CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# Ctrl-Alt-Delete is handled by /usr/lib/systemd/system/ctrl-alt-del.target
#
# systemd uses 'targets' instead of runlevels. By default, there are two main targets:
#
# multi-user.target: analogous to runlevel 3
# graphical.target: analogous to runlevel 5
#
# To view current default target, run:
# systemctl get-default
#
# To set a default target, run:
# systemctl set-default TARGET.target

可以看到,裡面除了注釋,什麼也沒有,並沒有CentOS 6中設定預設執行級別的方式。

注釋內容大意是說,

# multi-user.target類似於runlevel 3;
# graphical.target類似於runlevel5

獲得當前預設執行級別的方式為
systemctl get-default

設定預設執行級別的方式
systemctl set-default TARGET.target

設定執行級別命令格式:

systemctl [command] [unit.target]

需要命令 systemctl

設定預設的執行級別為 1 則命令為:systemctl set-default  xxx

中對系統的級別對應是 
init級別  systemctl target
0          shutdown.target
1          emergency.target
2          rescure.target
3          multi-user.target
4          無
5          graphical.target
6          無

備註:以上命令均需要超級管理員許可權,如果需要臨時切換 直接 init + 需要切換到的數位。

5、使用/etc/systemd/system/default.target檔案

系統的預設執行級別在systemd System的/etc/systemd/system/default.target檔案中指定,它不適用於SysVinit系統:

[linuxidc@localhost linuxidc.com]$ cat /etc/systemd/system/default.target
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=Graphical Interface
Documentation=man:systemd.special(7)
Requires=multi-user.target
Wants=display-manager.service
Conflicts=rescue.service rescue.target
After=multi-user.target rescue.service rescue.target display-manager.service
AllowIsolate=yes

詳情見 https://www.linuxidc.com/Linux/2015-04/116648.htm


IT145.com E-mail:sddin#qq.com