1. /etc/init.d 등록

 

# Shell 파일 생성

cd /etc/init.d
sudo vi auto_run.sh

#!/bin/bash
mkdir /test

# 권한설정
sudo chmod 755 /etc/init.d/auto_run.sh

 

# 자동실행 등록
sudo update-rc.d auto_run.sh defaults

# 자동실행 해제
sudo update-rc.d -f auto_run.sh remove
 

 

2. crontab 등록

# 크론탭 등록

$ crontab -e
@reboot /home/ubuntu/shell/auto_run.sh > /dev/null 2>&1
 

 

'Infra Structure > Linux' 카테고리의 다른 글

[Ubuntu] squid 프록시 서버설정  (0) 2022.08.18
[Ubuntu] pptp VPN 서버 설치  (0) 2022.08.18
[Ubuntu] NFS 설정  (0) 2022.07.10
[Centos] NFS 설정  (0) 2022.07.10
[Linux] 쉘 실행시 내부에서 패스워드 입력  (0) 2022.07.04

+ Recent posts