为 NIS 客户端添加 sudo 权限

为 NIS 客户端添加 sudo 权限

我已经配置了几个带有 NFS 和 NIS 的 ubuntu 12.04 服务器,就像在

https://help.ubuntu.com/community/SettingUpNISHowTo以及https://help.ubuntu.com/community/SettingUpNFSHowTo

它运行良好,我可以登录 NIS/NFS 客户端,我的主目录也加载了。不幸的是,无法在这些客户端上获得 sudo 权限,而同一用户在 NIS 主服务器上拥有 sudo 权限。

将主服务器 /etc/sudoers 文件传输到客户端对我来说也不起作用。

答案1

问题解决了,只需添加

   d-i     network-console/start   select  continue

到预置文件,这会导致 debian-installer 在 network-console 的启动模板中选择继续按钮。我最终的预置代码片段如下所示:

  d-i     preseed/early_command   string  anna-install network-console
  d-i     network-console/password        password test
  d-i     network-console/password-again  password test
  d-i     network-console/start   select  continue
  d-i     netcfg/get_nameservers  string
  d-i     netcfg/get_ipaddress    string
  d-i     netcfg/get_netmask      string 255.255.255.0
  d-i     netcfg/get_gateway      string

相关内容