LoginSignup
88
68

More than 5 years have passed since last update.

[Ubuntu] visudoのエディタをnanoからvimに変更する

Last updated at Posted at 2017-02-28

visudoでnanoが立ち上がるという不条理を経験したので変更手順をメモ

TL;DR

sudo update-alternatives --config editor を使用する

追記:コメントで指摘頂きましたが、以下のように直接指定してもよさそうです

直接指定
$ sudo update-alternatives --set editor /usr/bin/vim.basic

変更手順例

vim.basicに変更
$ sudo update-alternatives --config editor
There are 5 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/code        0         manual mode
  4            /usr/bin/vim.basic   30        manual mode
  5            /usr/bin/vim.tiny    10        manual mode

Press enter to keep the current choice[*], or type selection number: 4
update-alternatives: using /usr/bin/vim.basic to provide /usr/bin/editor (editor) in manual mode
変更の確認
$ sudo update-alternatives --config editor
There are 5 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/code        0         manual mode
* 4            /usr/bin/vim.basic   30        manual mode
  5            /usr/bin/vim.tiny    10        manual mode

Press enter to keep the current choice[*], or type selection number:

参考

Ubuntuのvisudoエディタが変nanoになる - それマグで!

88
68
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
88
68