Debian 9에 rc를 추가하는 방법local

1196 단어 증대rc.local
c.local은 옛날 버전의 debian 시스템에 있습니다. 6버전 이후에 이것은 없습니다. 여기에 Debian 9이 시작 스크립트를 켜는 방식을 기록합니다.
새 파일:
vi/etc/systemd/system/rc-local.service
내용을 편집하려면 다음과 같이 하십시오.
[Unit]Description=/etc/rc.localConditionPathExists=/etc/rc.local
[Service]Type=forkingExecStart=/etc/rc.local startTimeoutSec=0StandardOutput=ttyRemainAfterExit=yesSysVStartPriority=99
[Install]WantedBy=multi-user.target
새 파일:
vi/etc/rc.local
내용:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0

권한을 추가하려면 다음과 같이 하십시오.
chmod +x/etc/rc.local
시스템 부팅에 설정:
systemctl enable rc-local
시작 스크립트:
systemctl start rc-local.service
서비스 상태 확인:
systemctl status rc-local.service
위에서 시스템 시작 스크립트를 성공적으로 만들었습니다. 다음에/etc/rc.에서loacl의 exit 앞에 시작하고 싶은 스크립트가 추가되었습니다. 예를 들어:
cd/home/wjf/flypigsh run.sh
이 문서는 링크 주소를 영구적으로 업데이트합니다.https://www.linuxidc.com/Linux/2018-04/151670.htm

좋은 웹페이지 즐겨찾기