부제: systemd 이전 SysV init 스크립트의 부팅 활성화를 관리하던 명령chkconfig --list # SysV 서비스의 런레벨별 on/off 나열chkconfig --add myservice # SysV 스크립트를 관리 대상에 등록chkconfig myservice on # 부팅 시 자동 시작 설정(레거시)$ chkconfig --listNote: This output shows SysV services only and does not include native systemd services. If you want to list systemd services use 'systemctl list-unit-files'.$ chkconfig --hel..