标签:def The you systemctl graph 设置 test div 使用
版本:CentOS 7
首先:
[root@localhost test]# cat /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 # [root@localhost test]#
其中:
multi-user.target 代表命令模式
graphical.target 代表图形界面
使用如下命令可以查看当前所处模式:
[root@localhost test]# systemctl get-default
multi-user.target
使用如下命令修改为图形界面模式:
systemctl set-default graphical.target
标签:def The you systemctl graph 设置 test div 使用
原文地址:https://www.cnblogs.com/zoneofmine/p/13225275.html