当前位置:首页 > linux教程 > 列表

debian中修改crontab的默认编辑器nano为vi

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-15 09:32:01 浏览: 评论:0 

很多朋友都知道在linux中操作文件时有一个默认的编辑器了,下面我们一起看一篇debian中修改crontab的默认编辑器nano为vi的方法,希望文章对各位有帮助。

晚上回到家中发现我开发板的时间居然提前了一天,马上安装ntp来同步了时间,为了保证开发板时间上的准确,决定再加到crontab中,让其定时更新下时间,没想到crontab -e之后居然是我没有见过的编辑器,网上搜了下才发现原来debian中crontab默认使用的nano编辑器,好吧,又搜了下怎么退出nano编辑器,原来是使用ctrl+x,然后根据提示来操作,好了,为了方便自己,我决定把nano改成vi.

系统:debian 7

1.修改nano为vi update-alternatives --config editor,出现下面的提示:

  1. There are 8 choices for the alternative editor (providing /usr/bin/editor). 
  2.   Selection    Path                Priority  Status 
  3. ------------------------------------------------------------ 
  4.   0            /usr/bin/joe        70        auto mode 
  5. * 1            /bin/nano            40        manual mode 
  6.   2            /usr/bin/jmacs      50        manual mode 
  7.   3            /usr/bin/joe        70        manual mode 
  8.   4            /usr/bin/jpico      50        manual mode 
  9.   5            /usr/bin/jstar      50        manual mode 
  10.   6            /usr/bin/rjoe        25        manual mode 
  11.   7            /usr/bin/vim.basic  30        manual mode 
  12.   8            /usr/bin/vim.tiny    10        manual mode 
  13. Press enter to keep the current choice[*], or type selection number: 8 
  14. update-alternatives: using /usr/bin/vim.tiny to provide /usr/bin/editor (editor) in manual mode.  --phpfensi.com 

可能每个人的不一样,因为另外一个朋友执行这条命令的时候,说只有5个选项,反正大家自己看清楚了再选,这里我输入的是8,把crontab默认编辑器改成了vi.

ps:如果没有切换成功,请自己手动重启下cron服务:/etc/init.d/cron restart

2.进行验证

现在输入crontab -e就使用的vi编辑器了.

Tags: debian编辑器 crontab编辑器

分享到: