2009. 1. 21. 12:32

21. 부팅시 실행레벨설정 ( X-window 로 또는 터미널으로)


리눅스는 /etc/inittab 파일의 실행레벨 설정으로 처음 부팅할때

X-window GUI( Graphic User Interface) 환경으로 부팅할 것인지

Terminal CLI(Command Line Interface) 환경으로 부팅할 것인지 결정이 가능하다 .


[root@localhost ~]# more /etc/inittab
#
# inittab       This file describes how the INIT process should set up
#               the system in a certain run-level.
#
# Author:       Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
#               Modified for RHS Linux by Marc Ewing and Donnie Barnes
#

# Default runlevel. The runlevels used by RHS are:
#   0 - halt (Do NOT set initdefault to this)
#   1 - Single user mode
#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
#   3 - Full multiuser mode
#   4 - unused
#   5 - X11
#   6 - reboot (Do NOT set initdefault to this)
#
id:3:initdefault:



여기에서 설치를 GUI 환경으로 햇다면 id : 5 라고 써 있을 것이고
이것을 3으로 고치면
CLI 환경으로 부팅이 가능하다 .


참고로 시스템 종료시에  shutdown -h now 라는 복잡한 명령보단

init 0

이라고 치면 된다. !! ㅋ