Linux:檢查當前執行級別的五種方法
執行級就是 作業系統當前正在執行的功能級別。存在七個執行級別,編號從0到6。系統可以引導到任何給定的執行級別。執行級別由數字標識。 |
每個執行級別指定不同的系統配置,並允許訪問不同的程式組合。預設情況下,Linux會引導至執行級別3或執行級別5。啟動時一次只執行一個執行級別。它不會一個接一個地執行。
系統的預設執行級別在SysVinit系統的/etc/inittab檔案中指定。
但是systemd系統不讀取此檔案,它使用以下檔案/etc/systemd/system/default.target來獲取預設的執行級別資訊。
我們可以使用以下五種方法檢查
當前執行級別。
runlevel
:
runlevel
列印系統的上一個和當前執行級別。
who
:列印有關當前登入使用者的資訊。它將使用“
-r
”選項列印執行級別資訊。
systemctl
命令:它控制
systemd
系統和服務管理器。
使用
/etc/inittab
檔案:系統的預設執行級別在
SysVinit System
的
/etc/inittab
檔案中指定。
使用
/etc/systemd/system/default.target
檔案:系統的預設執行級別在
systemd System
的
/etc/systemd/system/default.target
檔案中指定。
詳細的執行級別資訊在下表中描述。
系統將根據執行級別執行程式/服務。
執行級別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/
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
runlevel
列印系統的上一個和當前執行級別:
[linuxidc@localhost linuxidc.com]$ runlevel
N 5
1]、N:“N”表示自系統啟動後執行級別尚未更改。
2]、5:“5”表示系統的當前執行級別。
列印有關當前登入使用者的資訊,它將使用-r選項列印執行級別資訊:
[linuxidc@localhost linuxidc.com]$ who -r
執行級別 5
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
系統的預設執行級別在
SysVinit System
的
/etc/inittab
檔案中指定,但systemd不讀取檔案,因此,它僅適用於SysVinit系統而不適用於systemd系統。
[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:
[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
+ 需要切換到的數字。
系統的預設執行級別在systemd System的/etc/systemd/system/default.target檔案中指定,它不適用於SysVinit系統:
[linuxidc@localhost linuxidc.com]$ cat /etc/systemd/system/default.target
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31524109/viewspace-2647049/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux啟動過程以及7種執行級別Linux
- 五種繞過Linux命令別名的方法Linux
- Java 例項 - 如何檢視當前 Java 執行的版本?Java
- 1.4.2. 檢查當前版本號
- Java:如何輕鬆獲取當前執行的方法名Java
- Linux系統的七個執行級別Linux
- PostgreSQL 查詢當前執行中sql的執行計劃——pg_show_plans模組SQL
- 如何檢視Linux 當前訪問ipLinux
- 關於四種獲取當前執行方法名稱方案的基準測試報告測試報告
- 在 Windows 中執行 Linux 命令的 4 種方法WindowsLinux
- 檢視當前 linux 主機支援什麼型別的硬體解碼?Linux型別
- Centos8種如何更改執行級別CentOS
- 系統執行級別及修改方法
- Logcat怎麼設定filter,檢視當前執行app的log資訊GCFilterAPP
- 檢視SQL執行計劃的幾種常用方法YQSQL
- Linux中執行Shell指令碼的方式(三種方法)Linux指令碼
- Linux檢視當前目錄下的檔案大小Linux
- 多執行緒(五)---執行緒的Yield方法執行緒
- java檢測當前CPU負載狀態的方法Java負載
- Linux系統安裝執行.AppImage檔案的兩種執行方法介紹LinuxAPP
- Linux作業系統執行級別介紹Linux作業系統
- 檢視linux系統當前登陸的使用者Linux
- Java如何獲取當前執行緒Java執行緒
- Linux執行等級Linux
- Linux當前當前程式Linux
- matlab: 檢查程式執行效率Matlab
- Linux 技巧:讓程式在後臺可靠執行的幾種方法Linux
- 在Linux中,如何檢視當前系統的版本資訊?Linux
- 當前Activity的onPause執行完後,呼叫Paused介面
- linux有幾個執行級別?各具有哪些功能?Linux
- 執行緒池的五種狀態及建立執行緒池的幾種方式執行緒
- Linux檢視環境變數當前資訊和檢視命令Linux變數
- linux下檢視mysql版本的四種方法LinuxMySql
- Linux檢視檔案大小的幾種方法Linux
- 在Linux中,系統預設的執行級別是什麼?Linux
- 簡單實現Laravel獲取當前執行的SQLLaravelSQL
- Linux的執行等級與目標Linux
- 檢視正在執行的 Linux 系統版本Linux