출처 
1)http://www.cyberciti.biz/faq/howto-runlevel-configuration-tool-to-start-service/
2)http://tamenut.tistory.com/entry/Linux-Run-Level

RedHat or CentOS
# chkconfig --list httpd
httpd 데몬의 실행 레벨 확인
# chkconfig --level 2345 httpd on
httpd 데몬의 실행 레벨을 설정함

Ubuntu or Debian
$ sudo update-rc.d ssh defaults
update-rc.d automatically updates the System V style init script links /etc/rc[runlevel].d/[NN]name to scripts /etc/init.d/name.
RunLevel 3이라면 /etc/rc3.d 디렉토리에 있는 심볼릭 링크 스크립트(실제 스크립트 파일은 /etc/init.d 디렉토리에 있음)를 실행함.

$ sudo update-rc.d S98Rational defaults
update-rc.d: warning: /etc/init.d/S98Rational missing LSB information
update-rc.d: see <http://wiki.debian.org/LSBInitScripts>
 Adding system startup for /etc/init.d/S98Rational ...
   /etc/rc0.d/K20S98Rational -> ../init.d/S98Rational
   /etc/rc1.d/K20S98Rational -> ../init.d/S98Rational
   /etc/rc6.d/K20S98Rational -> ../init.d/S98Rational
   /etc/rc2.d/S20S98Rational -> ../init.d/S98Rational
   /etc/rc3.d/S20S98Rational -> ../init.d/S98Rational
   /etc/rc4.d/S20S98Rational -> ../init.d/S98Rational
   /etc/rc5.d/S20S98Rational -> ../init.d/S98Rational


Linux RunLevel
# init [RunLevel]
RunLevel 전환하기

RunLevel 0 : 시스템 종료(halt)
RunLevel 1 : 단일 사용자, 싱글 모드
RunLevel 2 : NFS를 지원하지 않는 다중 사용자 모드
RunLevel 3 : 모든 기능을 포함한 다중 사용자 모드(X윈도우 지원안함)
RunLevel 4 : 사용되지 않는 실행모드(사용자가 직접정의하여 사용)
RunLevel 5 : X윈도우 부팅, GUI환경
RunLevel 6 : 시스템 재부팅