Menu Close

systemctl服务——字符和图像界面切换

1. 查看默认运行模式

~]# systemctl get-default

2. 设置默认的运行模式

#设置为字符模式
~]# systemctl set-default multi-user.target
#设置为图形模式
~]# systemctl set-default graphical.target
#重启操作系统
]# reboot

#当前立即进入字符模式
~]# systemctl isolate multi-user.target
#当前立即进入图形模式
~]# systemctl isolate graphical.target

3. 查看服务是否开启

~]# systemctl is-enabled crond.service

4. 查看服务是否活跃

~]# systemctl is-active crond