Change Run-Level2016/06/22 | 
| 
 
Change Run-Level like follows if you'd like to.
 
 | 
|
| [1] | Run-Level is set with linking to /etc/systemd/system/default.target. For example, the default setting without GUI is like follows. | 
| 
 
[root@dlp ~]#  
[root@dlp ~]# ll /etc/systemd/system/default.target  lrwxrwxrwx. 1 root root 37 Jun 21 17:36 /etc/systemd/system/default.target -> /lib/systemd/system/multi-user.target ll /lib/systemd/system/multi-user.target  -rw-r--r--. 1 root root 492 May 30 13:23 /lib/systemd/system/multi-user.target  | 
| [2] | For example, if you'd like to change the Run-Level to Graphical-login, set like follows. | 
| 
 
[root@dlp ~]#  
[root@dlp ~]# ln -fs /lib/systemd/system/graphical.target /etc/systemd/system/default.target  ll /etc/systemd/system/default.target  lrwxrwxrwx 1 root root 36 Nov 3 12:02 /etc/systemd/system/default.target -> /lib/systemd/system/graphical.target  | 
| 
 |