CentOS7 修改 啟動級別
阿新 • • 發佈:2018-12-07
1. centos7 之前應該使用init 的啟動指令碼 不支援並行 速度比較慢, centos7 開始使用systemd 的模式 提高了開機的效能
所以之前的init 指令碼修改 啟動級別應該就無效了
之前的啟動級別定義為:
0 - 系統停機狀態 1 - 單使用者工作狀態 2 - 多使用者狀態(沒有NFS) 3 - 多使用者狀態(有NFS) 4 - 系統未使用,留給使用者 5 - 圖形介面 6 - 系統正常關閉並重新啟動
這裡面注意一點 init 6
不能輸入到之前的控制檔案中 不然就會迴圈啟動...
2. 到了centos7 先看一下配置檔案
因為相容性 可以開啟 之前的 /etc/inittab配置檔案看一下
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 # ~ ~
比如我這個虛擬機器:
其他命令 都應該可以處理.