우분투에서 크론탭을 설정하는 중에 Operation not permitted 오류가 발생하는 경우가 있습니다. 이는 crontab 파일의 수정을 위한 권한이 부족할 때 발생합니다.
다음과 같이 /var/spool/cron/crontabs 파일의 수정권한이 부족하기 때문에 발생하는 오류로 해당 위치의 권한을 수정해야 합니다.
# 오류
$ crontab -e
crontab: installing new crontab
crontab: crontabs/deploy: rename: Operation not permitted
crontab: edits left in /tmp/crontab.BDmSwI/crontab
# /var/spool/cron/crontabs 파일 수정 권한 부족
$ ll
total 20
drwxr-xr-x 5 root root 4096 Jul 27 02:28 ./
drwxr-xr-x 4 root root 4096 Jan 12 2021 ../
drwxrwx--T 2 daemon daemon 4096 Jan 12 2021 atjobs/
drwxrwx--T 2 daemon daemon 4096 Feb 20 2018 atspool/
drwx-wx--T 2 root crontab 4096 Jul 27 02:39 crontabs/
반응형
'리눅스' 카테고리의 다른 글
[vm] ubuntu 클라우드 이미지에서 apt 사용시 E: Could not get lock /var/lib/dpkg/lock-frontend 오류 발생시 처리 방법 (0) | 2021.12.29 |
---|---|
[vi] VI의 기본 인코딩을 utf-8로 설정 (0) | 2021.12.21 |
[ubuntu] systemctl 명령으로 서비스 등록 (0) | 2021.07.19 |
[bash] ssh로 원격 서버에 명령어 실행시 환경 변수를 읽지 않는 문제 해결 (0) | 2021.03.29 |
[ubuntu] apt-get 프록시(proxy) 설정 (0) | 2021.03.28 |