운영 체제가 시작될 때 실행하고 싶은 스크립트가 있습니다(예: 인터넷에 연결하는 스크립트). 이제는 컴퓨터가 시작된 후 로그인할 때마다 이를 실행합니다. 스크립트를 자동으로 실행하려면 어떻게 해야 합니까?
답변1
이 작업은 두 가지 방법으로 수행할 수 있습니다.
첫 번째 방법은/etc/rc.local시작 시 한 번 실행:
스크립트를 실행 가능하게 만듭니다.
chmod +x path_to_script/script_file
스크립트 추가절대 경로당신을 위한/etc/rc.local전에
exit 0
두 번째 방법:
- 아래에 스크립트를 넣으세요/etc/init.d:
mv path_to_script/script_file /etc/init.d/
- 실행 가능하게 만드세요:
chmod +x /etc/init.d/script_to_run
- 스크립트에 대한 심볼릭 링크 만들기/etc/rc.d/:
ln -s /etc/init.d/script_to_run /etc/rc.d/
- 아래에 스크립트를 넣으세요/etc/init.d: