본문으로 바로가기

리눅스 cron 자동화 예제

category 리눅스/Linux 일반 2013. 7. 4. 23:30

리눅스 시스템의 시간동기화와 quote 체크에 관련된 자동화 예제입니다. cron에 대한 자세한 설명한 리눅스 cron - 작업 예약 명령에서 설명합니다.

# vi /etc/crontab

  SHELL=/bin/bash
  PATH=/sbin:/bin:/usr/sbin:/usr/bin
  MAILTO=root
  HOME=/

  # For details see man 4 crontabs
 # Example of job definition:

  # .---------------- minute (0 - 59)
  # |  .------------- hour (0 - 23)
  # |  |  .---------- day of month (1 - 31)
  # |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
  # |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
  # |  |  |  |  |
  # *  *  *  *  * user-name command to be executed

  # date time sync
  0 5 * * * root /usr/bin/rdate -s time.bora.net && /sbin/hwclock -w

  # quotacheck weeks
  10 5 * * 1 root /sbin/quotaoff -auvg && /sbin/quotacheck -auvg && /sbin/quotaon -auvg


'리눅스 > Linux 일반' 카테고리의 다른 글

리눅스 clonezilla 사용법  (0) 2013.07.30
리눅스 Apache 2.2 특징  (0) 2013.07.09
리눅스 cron - 작업 예약 명령  (0) 2013.07.04
메일 서버 구동의 이해  (1) 2013.06.25
리눅스 로컬네임서버(/etc/hosts) 설정  (4) 2013.06.23