# Centos 7 Run level 변경방법 자주 사용하는 시스템 런레벨
**런레벨****용도**
0종료
1싱글사용자
2다중사용자 (multi-user.target)
5그래픽 환경 (graphic.target)
6재부팅
Centos7에서는 아래 명령어로 변경 가능 (재부팅 후부터 반영) ```shell [root@localhost ~]# systemctl set-default graphical.target ``` 현재환경에서 변경 ```shell [root@localhost ~]# systemctl isolate graphical.target ``` 현재 사용중인 런레벨 확인 방법 1. who명령어로 확인 ```shell [root@localhost ~]# who -r run-level 3  2014-09-18 10:22 ``` 2. systemctl 명령어로 확인 ```shell [root@localhost ~]# systemctl get-default multi-user.target ```