Question - 14
User ravi must configure cron job that runs at daily 14:30 and executes /bin/echo "welcome". User user1 should not schedule cron jobs.
ravi 유저는 cron 설정을 합니다.
매일 14:30분에 "welcome" 메세지를 echo 명령어로 출력.
user1 유저는 cron 을 사용할 수 없습니다.
# su - ravi 후 crontab -e
# 또는 root 상태에서 crontab -eu ravi // ravi 유저의 cron 설정
30 14 * * * /bin/echo "welcome"
:wq
# vi /etc/cron.deny // deny 유저계정 설정
user1
:wq
user1은 crontab -e 실행시 실행 불가 메세지를 보게 됩니다.
crontab -e
You (user1) are not allowed to use this program (crontab)
See crontab(1) for more information
'Linux ( Cent OS ) > RHCSA ' 카테고리의 다른 글
[RHCSA] Openldap Server + Client ( 작성 중 ) (2) | 2019.05.15 |
---|---|
[RHCSA] ACL 문제 (2) | 2019.05.13 |
[RHCSA] NFS Mount Configure as "Autofs" (2) | 2019.05.12 |
[RHCSA] (GUI) NTP Configuration (0) | 2019.05.12 |
[RHCSA] 시스템에 액세스하기 위해 부팅 프로세스 인터럽트 (0) | 2019.04.18 |