부팅 후 명령(스크립트)을 어떻게 실행할 수 있나요?

부팅 후 명령(스크립트)을 어떻게 실행할 수 있나요?

부팅 후 간단한 명령을 실행하고 싶습니다.

cd /mypath
# then
./mycommand

내가 어떻게 해?

답변1

두 가지 솔루션:

첫 번째는 명령의 전체 경로를 다음 위치에 입력하는 것입니다 /etc/rc.local.

/mypath/mycommand

또는 크론 방식:

crontab -e

@reboot cd /mypath;./mycommand

crontab 매뉴얼에서:

 @reboot        Run once, at startup.

관련 정보