Fedora 29
Sponsored Link

Change Run-Level2018/11/01

 
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 ~]#
ll /etc/systemd/system/default.target

lrwxrwxrwx. 1 root root 37 Oct 30 23:52 /etc/systemd/system/default.target -> /lib/systemd/system/multi-user.target
[root@dlp ~]#
ll /lib/systemd/system/multi-user.target

-rw-r--r--. 1 root root 532 Jun 22 20:11 /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 ~]#
ln -fs /lib/systemd/system/graphical.target /etc/systemd/system/default.target

[root@dlp ~]#
ll /etc/systemd/system/default.target

lrwxrwxrwx. 1 root root 36 Nov 1 15:27 /etc/systemd/system/default.target -> /lib/systemd/system/graphical.target
Matched Content