1. 실행할 스크립트 작성 /etc/init.d/ 이 위치에 있는 스크립트들이 자동실행된다. vi /etc/init.d/autostart.sh autostart.sh 는 /test 라는 폴더가 만들어지는 실행파일이다. #!bin/bash mkdir /test 2. 권한 변경 자동실행시 권한이 없어 실패할수 있으므로 권한을 줍니다. chmod 775 /etc/init.d/autostart.sh 3. 자동실행 등록 update-rc.d autostart.sh defaults [실행순서] [종료순서] defaults : runlevel 3,5 실행순서/종료순서는 지정하지 않아도 된다. - 만약 등록된 것을 지우고 싶다면 update-rc.d -f autostart.sh remove 4. 재부팅 확인 reboo..