跳过 sudo 密码

跳过 sudo 密码

我想跳过 sudo 密码,即使用 sudo 命令时不想被要求输入密码。可以吗?我知道安全问题,我只会在我的虚拟测试服务器上使用它。

答案1

假设您的用户名是 edi,您可以按照以下步骤操作:

只需将所有出现的 edi 更改为您的用户名即可

#  create /etc/sudoers.d/edi file
sudo nano /etc/sudoers.d/edi
#  put the following line on it
edi ALL=(ALL) NOPASSWD: ALL
#  make the file owned by root
sudo chown root:root /etc/sudoers.d/edi
#  change the permissions of file just to execute
sudo chmod 440 /etc/sudoers.d/edi

您可能需要注销并重新登录。

相关内容