I already know that I need to tune /etc/sudoers file but I would like to see full information and also a solution that would not require me to use vi editor.
Update: never, ever try to edit the file with something else than visudo.
I already know that I need to tune /etc/sudoers file but I would like to see full information and also a solution that would not require me to use vi editor.
Update: never, ever try to edit the file with something else than visudo.
Run sudo visudo and add this line:
Defaults timestamp_timeout=-1
See man 5 sudoers. -1 causes the password to never timeout. You may change the number to whatever you like in minutes.
The man page for sudo says that sudo -v "extends the sudo timeout for another 5 minutes".
Running 'sudo visudo' instead of editing the file directly causes the system to validate the sudoers file before it commits the changes. For instance, if you leave a stray character somwhere, when you save and exit, it will say "there is an error in the sudoers file, what would you like to do?" ... hence giving you a chance to go back in and edit. This actually just happened to me 10 minutes ago.
visudo, it is not true, for me sudo mcedit /etc/sudoers worked just fine.
– sorin
Mar 16 '11 at 16:47
visudo runs some basic sanity checks on the sudoers file before saving. If you mess up the file by using vi directly you may lock yourself out from using sudo making it very difficult to undo the change.
– nohillside
Apr 14 '12 at 17:29
visudo wraps around the system default editor (I would guess the root user default if the root has overridden the default), so has nothing to do with vi bar the name. On my system (not apple btw) I get nano. Try export EDITOR='/bin/nano' or whatever editor you like then use visudo.
– Chris
May 20 '12 at 10:27
Be really careful about modifying /etc/sudoers directly!
For instance, I tried the above suggestion directly:
sudo sh -c 'echo "\nDefaults timestamp_timeout=-1">>/etc/sudoers'
which messed up my /etc/sudoers file (on a CentOS Virtualbox VM). Should have been:
sudo sh -c 'echo -e "\nDefaults timestamp_timeout=-1">>/etc/sudoers'
Fortunately, I had access to the root account, logged in as root, used visudo and repaired the problem!
So, I agree w/ the above comments to use visudo instead.
All information for sudoers can be found from the terminal with the command
man sudoers
You can even user simple text to edit files, however the privs make that difficult.
sudoers is -r--r----- (Octal 0440)
This indicates that Apple really doesn't want you messing with the file. This really is the core security of the OS.
Options for editing are vi, emacs, or my personal favourite BBEdit.
visudo rather than editing the file yourself. Also, this has nothing to do with OS X. It's standard *nix. Also, if you want to use a non-default editor, just set the $EDITOR environment variable before calling visudo. e.g. EDITOR=nano sudo visudo.
– daviewales
Mar 21 '14 at 15:13
Disable sudo timeout with this command:
sudo sh -c 'echo "\nDefaults timestamp_timeout=-1">>/etc/sudoers'
To re-enable sudo timeout with this method:
sudo sed -i "/Defaults timestamp_timeout=-1/d" /etc/sudoers
sudo should have a one-liner way to change this without having to edit a file!
– samthebest
Jul 03 '17 at 10:06