1. 程式人生 > >【Linux】Set CentOS no GUI default

【Linux】Set CentOS no GUI default

oot -- halt graphic 重啟 運行級別 linux out 當前

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

重點看下面這部分代碼

# 0 - halt (Do NOT set initdefault to this) 停止(不設initdefault這個)

# 1 - Single user mode 單用戶模式

# 2 - Multiuser, without NFS (The same as 3, if you do not have networking) 多用戶,沒有NFS(相當於3,如果你沒有網絡)

# 3 - Full multiuser mode 充分多用戶模式

# 4 - unused 空閑

# 5 - X11 圖形界面

# 6 - reboot (Do NOT set initdefault to this) 重啟(不設initdefault這個)

id:5:initdefault: ----這裏就是我們需要修改的參數了

id:3:initdefault: ----修改為這樣就ok了,其他地方不需要動

but if above centos7

multi-user.target相當於之前的更改運行級別為3,意思就是命令行。
graphical.target相當於之前的更改運行級別為5,意思就是圖形界面(graphical中文意思是圖形)。

查看當前的開機默認運行方式:systemctl get-default

設置開機不自啟圖形界面:systemctl set-default multi-user.target

【Linux】Set CentOS no GUI default