1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages.ko/linux/chkconfig.md
코드싸이 19c6841a9d
cryptsetup-luksformat: fix typo, linux/c*: add and update Korean translation (#14682)
* linux/c*: add and update Korean translation

* cryptsetup-luksformat: fix typo
2024-11-08 15:55:00 +09:00

594 B

chkconfig

CentOS 6에서 서비스의 실행 레벨을 관리합니다. 더 많은 정보: https://manned.org/chkconfig.

  • 서비스와 실행 레벨 나열:

chkconfig --list

  • 특정 서비스의 실행 레벨 표시:

chkconfig --list {{ntpd}}

  • 부팅 시 서비스 활성화:

chkconfig {{sshd}} on

  • 실행 레벨 2, 3, 4, 5에서 부팅 시 서비스 활성화:

chkconfig --level {{2345}} {{sshd}} on

  • 부팅 시 서비스 비활성화:

chkconfig {{ntpd}} off

  • 실행 레벨 3에서 부팅 시 서비스 비활성화:

chkconfig --level {{3}} {{ntpd}} off