我安装了likewise-open并在Ubuntu12.04上成功地加入了域。
当我与作为Domain Admins成员的域用户登录时,我不会在Ubuntu框中获得管理员优势。
我编辑了/etc/sudoers文件并添加了:
%HOME\\Domain^Admins ALL=(ALL) ALL但这也没用。我不能运行任何sudo命令!
我现在也尝试过这样做(取自PowerBroker文档):
On Ubuntu, you can simply add your domain account to the admin group
in the /etc/group file by entering a line like the following as
root:
admin:x:115:LIKEWISEDEMO\kathy但这也没用!
发布于 2012-05-10 15:32:12
同样地(或者PowerBroker,不管他们现在叫它什么),小写翻译组名称,以及您已经考虑过的空格字符替换。尝试:
%HOME\\domain^admins ALL=(ALL) ALL另外,它是否设置为默认域?如果是这样的话,那么您就不需要域部分(我认为这种行为是在最近的版本中开始的,所以这可能是它的一部分)。因此,也请尝试:
%domain^admins ALL=(ALL) ALL把这两种方法都放在sudoers文件中是安全的--不管是哪一方都能做到这一点。
https://serverfault.com/questions/387950
复制相似问题