1. "rc.local" 파일의 실행 권항을 부여하기 위해 아래의 명령어를 입력합니다.
# chmod +x /etc/rc.d/rc.local |
2. 아래의 명령어로 "rc-local.service"의 상태를 확인합니다.
# systemctl status rc-local.service |
3. "rc-local.service"가 활성화 되어있지 않다면 아래의 명령어로 서비스를 활성화 시킵니다.
# systemctl start rc-local.service |
4. "/usr/lib/systemd/system/rc-local.service" 파일에 아래와 같이 기입합니다.
기입한 "WantedBy=[]" 명령어는 "systemctl enable" 명령어로 유닛을 등록할 경우 등록에 필요한 유닛을 지정합니다.
# vi /usr/lib/systemd/system/rc-local.service [Install] WantedBy=multi-user.target |
5. 재부팅 시에도 활성화 되도록 아래의 명령어를 입력합니다.
# systemctl enable rc-local.service |
6. 설정이 제대로 되었는지 확인합니다.
# systemctl list-unit-files | grep rc.local |
7. "rc. local" 파일 설정 후 재부팅 시 등록한 실행 명령어들이 동작하는지 확인합니다.
# vi /etc/rc.d/rc.local |
'Linux' 카테고리의 다른 글
/etc/profile, ~/.bash_profile, ~/.bashrc, /etc/bashrc 파일 비교 (0) | 2020.08.28 |
---|---|
NTP와 Chrony 서비시간 동기화 (0) | 2020.07.17 |
리눅스 디바이스 드라이버 (0) | 2020.05.15 |
Defunct (Zombie) 프로세스 및 Orphan 프로세스 (0) | 2020.04.09 |
심볼릭 링크와 하드 링크 (0) | 2020.03.09 |