RHCE7设置运行级别 设置

一、设置命令行级别方法

[root@localhost ~]# systemctl set-default multi-user.target

rm '/etc/systemd/system/default.target'

ln -s '/usr/lib/systemd/system/multi-user.target' '/etc/systemd/system/default.target'

[root@localhost ~]#shutdown -r now


二、设置窗口级别方法:

[root@localhost ~]# systemctl set-default graphical.target

rm '/etc/systemd/system/default.target'

ln -s '/usr/lib/systemd/system/graphical.target' '/etc/systemd/system/default.target'

[root@localhost ~]#shutdown -r now


你可能感兴趣的:(设置,RHCE7设置运行级别)