gpt4 book ai didi

linux - 如何为唯一的 python 脚本创建 guest sudo 权限?

转载 作者:太空宇宙 更新时间:2023-11-04 11:49:28 30 4
gpt4 key购买 nike

在 Raspberry Pi 上,我希望 guest 用户能够运行需要 sudo 权限的单个 python 脚本,但无需使用密码即可运行其他任何需要 sudo 权限的脚本。

我已经使用 viuser 编辑了/etc/sudoer 文件,但未能获得所需的结果。当我以“访客”身份登录并尝试运行脚本时,计算机要求输入 super 用户密码。

编辑后的 ​​/etc/sudoer 文件如下:

#
# 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
User_Alias GROUPONE = guest

# Cmnd alias specification
Cmnd_Alias SCRIPT = /home/guest/test.py
GROUPONE ALL = SCRIPT

# User privilege specification
root ALL=(ALL:ALL) ALL
GROUPONE ALL = NOPASSWD: /home/guest/test.py

# Allow members of group sudo to execute any command
%sudo ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d

python 脚本是:

import subprocess
def Go():
subprocess.call(['sudo','echo', 'Test string'])
if __name == '__main__':
Go()

“python test.py”的预期结果是控制台上的“测试字符串”。相反,计算机会请求 guest sudo 密码。

最佳答案

请试试

modify user <GUEST> to add additional group <sudo>, I think <usermod --group GRP1...>

change group of the script to <sudo> and make group executable <chmod g+x SCRIPT> & < chgrp sudo SCRIPT>

我还没有测试过,但这应该可以。

关于linux - 如何为唯一的 python 脚本创建 guest sudo 权限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56500778/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com