Why do I have to edit /etc/sudoers with visudo?

9,500

Solution 1

You use visudo mostly to prevent from breaking your system. Visudo runs checks on your changes to make sure you didn't mess anything up. If you did mess something up, you could completely wreck your ability to fix it or do anything requiring privileges without rebooting into a rescue mode.

The man page describes this.

visudo edits the sudoers file in a safe fashion, analogous to vipw(8). visudo locks the sudoers file against multiple simultaneous edits, provides basic sanity checks, and checks for parse errors. If the sudoers file is currently being edited you will receive a message to try again later.

Solution 2

Zoredache answer is perfect.

One more thing that can be worth to mention. You can use you favorite editor by setting EDITOR or VISUAL:

export EDITOR=whatevertexteditoryouwant
export VISUAL=whatevertexteditoryouwant

Or:

EDITOR=whatevertexteditoryouwant visudo
Share:
9,500

Related videos on Youtube

Brian Lyttle
Author by

Brian Lyttle

Updated on September 17, 2022

Comments

  • Brian Lyttle
    Brian Lyttle over 1 year

    I've noticed that the sudoers file and cron config files act in a special way compared to other config files on Linux. They need to be edited with a special wrapper rather than any text editor. Why is this?

  • ansonl
    ansonl almost 15 years
    Interesting! +1, for illustrating a simple explanation for something that I should have known a long time ago :)
  • Joyce
    Joyce almost 15 years
    The behaviour of visudo is available generically as a command called sudoedit. This does the same lock/copy/edit/copy/unlock cycle (though obviously not with the parse step). One advantage this has is that it lets you give people sudo access to edit root-owned files without launching an editor as root, which might let them launch a shell from within the editor. If I shell out of my editor while running sudoedit, my euid is still my own.
  • balaji
    balaji over 12 years
    If you do that, it will still do the syntax-check step, or it will be equivalent of calling sudoedit like @James F suggested?
  • user649102
    user649102 over 12 years
    Yes is the answer to your question. You can use almost any editor you can invoke from cli.
  • balaji
    balaji over 12 years
    It was not a yes or no question :V
  • user649102
    user649102 over 12 years
    It will do the syntax check.