본문 바로가기

blog/etc

라즈베리파이 예약 종료 / 자동 종료

반응형

라즈베리파이 예약 종료 / 자동 종료

 

자동 종료 옵션을 넣고싶어 서칭을 했지만 정확히 필요한 내용을 찾기 힘들어 블로그 글로 작성합니다

리눅스로 찾아봐도 재부팅이나 스케쥴관련 내용만 나오고 정확히 어떻게 사용해야할지 잘 몰라서

저처럼 해매는 분이 없게 작성

 

 

1. 어떤 명령이든 아래 명령으로 접근

만약 에디터 선택하라고 나오면 nano가 제일 쉬우니 1.nano 를 선택해주세요

메모장 같은 느낌이다

사용에 관한 간단한 팁은

1. 컨트롤+x

2. Y , 엔터

3. 엔터

이 순서로 진행하면 작성 완료후 저장된다

pi@raspberrypi:~ $ sudo crontab -e


아래와 같은 내용이 나타나면

# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').
#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h  dom mon dow   command
//이곳에 입력

#은 주석이니 주석없는 곳에 입력을 하면되는데

 

재부팅이 필요한 것이 아니고 파일을 실행하는 것도 아니라

퇴근시간인 6시 30분에 자동종료되게 예약을 걸려고한다

 

35 18 * * * sudo shutdown -h now

이렇게 입력하면

맨 앞은 분 두번째는 시간

그래서 18시 30분에 종료 된다

 

 

딱 필요한 내용이었는데 너무 쉽거나 보통 재부팅에 관한 내용만 있어서 그런지

이렇게 정리하였다

반응형