rc.local 스크립트를 활성화하는 방법
rc.local 스크립트를 활성화하는 방법 rc.local은 Linux 부팅 시 자동으로 실행되는 스크립트입니다. rc.local 스크립트를 활성화하려면: 1. rc.local 스크립트를 작성합니다. 일반적으로 /etc/rc.local 파일에 스크립트를 작성합니다. 예를 들어 다음과 같은 스크립트를 작성할 수 있습니다. vim /etc/rc.local #!/bin/bash # This script will be executed at the end of each multiuser runlevel /path/to/your/command arg1 arg2 2. rc.local 파일을 실행 가능하도록 … Read more