crontab returned non zero value: chown: Operation not permitted
这很可能与crontab二进制文件的+ s标志有关。
检查:
root@server:~# ls -la /usr/bin/crontab
-rwxr-sr-x 1 root crontab 34760 Jul 3 2012 /usr/bin/crontab
root@server:~# chmod 4755 /usr/bin/crontab
root@server:~# ls -la /usr/bin/crontab
-rwsr-xr-x 1 root crontab 34760 Jul 3 2012 /usr/bin/crontab











