Ubuntu中的sudo总是要求我为每个命令输入密码。以前,我只需要输入一次密码,然后便会记住一段时间。这可能是在“升级”到Natty之后最近改变的。
我已经完成sudo visudo
并设置Defaults env_reset, timestamp_timeout = 60
,尝试重新启动,但是仍然无法正常工作。我该如何解决?
经过下面的建议,我/etc/sudoers
看起来像这样:
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
Defaults:endolith timestamp_timeout=60
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL:ALL) ALL
# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL
# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL
#includedir /etc/sudoers.d
更新:
我升级了VirtualBox,它开始遇到相同的问题。测,我跑了bash并尝试在其中进行sudo,并且正确记住了密码。只有当我使用默认的带壳鱼时才不记得了。它在以前的Ubuntu版本中已经实现,但是不再。
更新:
我升级到13.05,然后魔术又开始工作了。现在它会询问我一次密码,停止询问一会儿,然后过一段时间再询问一次。
Defaults:endolith timestamp_timeout=60
,但您不在任何属于endolith的组中,根据此处的另一条评论。那么您使用的用户名是什么?请与whoami
,并添加用户名代替endolith
的Defaults:endolith timestamp_timeout=60
或endolith ALL=(ALL) NOPASSWD: ALL