前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >ubuntu crontab选择编辑器

ubuntu crontab选择编辑器

作者头像
咻一咻
发布2020-05-29 15:43:35
2.9K0
发布2020-05-29 15:43:35
举报
文章被收录于专栏:咻一咻

Ubuntu编辑计划任务时,系统默认的编辑器是nana,不会用啊!!

crontab 选择编辑器select-editor,修改下默认的编辑器为vim,选择编号3即可。
代码语言:javascript
复制
root@iZj6c14rrum3260ghrc32qZ:~# 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
网上找到的其他方法:

方法1. 选择编号3

代码语言:javascript
复制
root@iZj6c14rrum3260ghrc32qZ:~# update-alternatives --config editor
There are 4 choices for the alternative editor (providing /usr/bin/editor).

  Selection    Path                Priority   Status
------------------------------------------------------------
* 0            /bin/nano            40        auto mode
  1            /bin/ed             -100       manual mode
  2            /bin/nano            40        manual mode
  3            /usr/bin/vim.basic   30        manual mode
  4            /usr/bin/vim.tiny    10        manual mode

Press <enter> to keep the current choice[*], or type selection number: 3
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in manual mode

方法2. 直接在终端输入:

代码语言:javascript
复制
   echo export EDITOR=/usr/bin/vim >> ~/.bashrc

方法3. 如果系统中只剩下nano和vim两个编辑器,这个时候我们如果完全删除nano,那么系统会默认选择vim为默认编辑器,在终端输入删除nano编辑器的命令:

代码语言:javascript
复制
   sudo apt-get remove nano
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/05/20 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • crontab 选择编辑器select-editor,修改下默认的编辑器为vim,选择编号3即可。
  • 网上找到的其他方法:
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档