linux服务下定时脚本crontab的使用注意事项
第一次使用crontab linux选择编辑器问题第一次使用crontab 时,会出现no crontab for root - using an empty one“Select a editor ......”下面有几个选项,就是叫你选择编辑器。(选vim)就可以了,我选的第三个。但是如果你选错了,就可能会遇到点麻烦,没有办法正常编辑,crontab -e。 怎么办?执行这个命令:select
第一次使用crontab linux选择编辑器问题
第一次使用crontab 时,会出现
no crontab for root - using an empty one
“Select a editor ......”下面有几个选项,就是叫你选择编辑器。(选vim)就可以了,我选的第三个。
但是如果你选错了,就可能会遇到点麻烦,没有办法正常编辑,crontab -e。 怎么办?
执行这个命令:select-editor (针对crontab的一个命令), 可以让你重新选一次。
crontab: "/usr/bin/sensible-editor" exited with status 1
root@ip82:/home/user# select-editor
Select an editor. To change later, run 'select-editor'.
1. /bin/ed
2. /bin/nano <---- easiest
3. /usr/bin/vim.basic
4. /usr/bin/vim.tiny
Choose 1-4 [2]: 3
root@ip82:/home/user# crontab -e
no crontab for root - using an empty one
设置crontab时,可能会操作的
设置默认编辑模式 vim /etc/profile 增加EXPORT EDITOR=vim
VIM /etc/cron.allow, vim /etc/cron.deny
crontab -e结果存放在/var/spool/cron/crontabs中
更多推荐
所有评论(0)