当前位置: 代码迷 >> Ruby/Rails >> 怎么解决“Error detected while processing /root/.vimrc:”
  详细解决方案

怎么解决“Error detected while processing /root/.vimrc:”

热度:105   发布时间:2016-04-29 02:18:41.0
如何解决“Error detected while processing /root/.vimrc:”

使用crontab -e添加定时任务时,遇到如下错误“Error detected while processing /root/.vimrc:”:

[root@~]# crontab -eError detected while processing /root/.vimrc:line   30:E518: Unknown option: fdm=syntaxline   34:E518: Unknown option: autochdir

第一种方法: 直观地,根据提示,应该是不支持fdm和autochdir指令,只需要判断下是否支持指令,如下:

[root@~]# vim ~/.vimrc "" not in vi 指令列表配置if has("fdm")"" 代码折叠set fdm=syntax"" catgs配置解决E257问题 http://blog.csdn.net/billfeller/article/details/40316501set tags=tags;set autochdirendif

此时即可使用crontab -e编辑定时任务。

第二种方法:

修改默认编辑器:

[root@~]# vim ~/.bashrc export EDITOR=/usr/bin/vim [root@~]# source ~/.bashrc

此时即可使用crontab -e编辑定时任务。

附录

1. 通过/var/log/cron可以查到定时任务执行日志;

2. 通过/var/spool/cron/tmp.XXXXE1I7VE可以查到当前正在执行的定时任务;

  相关解决方案