# RHEL / Centos 7 버전에서 runlevel 변경하기 / 런레벨 변경
1. default runlevel 값 확인하기
[root@localhost ~]# systemctl get-default
multi-user.target
2. graphical.target 으로 변경하기
[root@localhost ~]# systemctl set-default graphical.target
Removed symlink /etc/systemd/system/default.target.
Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/graphical.target.
3. 다시 default runlevel 값 확인하기
[root@localhost ~]# systemctl get-default
graphical.target
4. multi-user.target 으로 변경하기
[root@localhost ~]# systemctl set-default multi-user.target
Removed symlink /etc/systemd/system/default.target.
Created symlink from /etc/systemd/system/default.target to /usr/lib/systemd/system/multi-user.target.
5. 다시 default runlevel 값 확인하기
[root@localhost ~]# systemctl get-default
multi-user.target
'# IT # > Linux' 카테고리의 다른 글
# linux 사용중인 포트 확인하기 / Centos 사용중 포트 확인 # (0) | 2019.07.18 |
---|---|
# mysql table 값 변경 mariadb 테이블 값 변경# (0) | 2019.07.10 |
# linux Centos 리다이렉션 방법 # (0) | 2019.01.17 |
# linux 6,7 해당경로의 폴더 및 파일들의 용량을 보고싶다면 # (0) | 2019.01.16 |
# 리눅스 리페어모드 파일시스템 복구 # (0) | 2019.01.15 |