如何让用户在Unix中执行'sudo bash'?

时间:2012-06-18 11:41:32

标签: bash unix ubuntu sudo

我的Ubuntu系统中有一个名为“Teacher”的普通用户,它必须能够执行“sudo bash”命令吗?我怎样才能做到这一点? 非常感谢!

2 个答案:

答案 0 :(得分:1)

使用visudo命令将用户添加到sudoers列表(您需要root权限才能执行此操作)。以此格式(sudo)指定要授予user ALL=(ALL) ALL的用户,以便

Teacher ALL=(ALL) ALL

How to add a user to the sudoers listHow to add users to /etc/sudoers提供逐步说明。

有关详细信息,请参阅Visudo Manual

答案 1 :(得分:1)

我认为这不是一个好主意,但如果您愿意,您只需将此行添加到/etc/sudoers(使用visudo):

Teacher    ALL=(ALL) /bin/bash