我看过很多博客文章说,这足以做到
aptitude install sudo
su root
adduser USERNAME sudo
但这只能保护aptitude
,换句话说:
aptitude install sendmail
会要求输入密码,您需要sudo
先运行aptitude
apt-get install sendmail
不需要密码,不需要sudo
特权如果您编辑受保护的文件,例如其中的文件
etc
不会要求输入密码,则不需要sudo
特权您可以运行和停止服务,例如
apache
,它不需要密码,不需要sudo
特权
如何解决这个问题?这是我的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 mail_badpass
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:$
# Host alias specification
# User alias specification
# Cmnd alias specification
这是输出sudo -l
:
Matching Defaults entries for root on this host:
env_reset, mail_badpass,
secure_path=/usr/local/sbin\:/usr/local/bin\:/usr/sbin\:/usr/bin\:/sbin\:/bin
User root may run the following commands on this host:
(ALL : ALL) ALL
(ALL : ALL) ALL
su root
,您以root
用户身份登录,因此您可以完全访问所有内容。为了重新成为必须使用sudo
特权操作的常规用户,请注销以运行的shellroot
。