如何在Fedora 16或17的Gnome 3中禁用用户列表登录屏幕?


Answers:


5

gdm3将其配置加载到其自己的dconf数据库中。这显然与使用dconf-editor从GUI访问的用户dconf db是分开的。

要编辑控制gdm设置和登录屏幕的键值对,请在/etc/dconf/db/gdm.d中创建一个自定义文件,然后在其中添加自定义条目。

以root用户身份执行以下操作:

  1. 触摸/etc/dconf/db/gdm.d/01-custom-gdm-settings
  2. 添加以下内容:

    [org / gnome / login-screen]

    disable-user-list = true

  3. 更新dconf数据库

    dconf更新

  4. 重新启动gdm。

    systemctl重新启动gdm

    要么

    /etc/init.d/gdm重新启动

关于此的更多详细信息,可以在gnome sysadmin FAQ中找到。

https://live.gnome.org/SysAdminGuide


1

这是对我有用的(Oracle Linux 6.5)
http://blog.toracat.org/2011/01/gnome-login-shows-all-valid-user-accounts-disable-it/

编辑/etc/gconf/gconf.xml.defaults/%gconf-tree.xml档案

在本节下

<entry name="disable_user_list" mtime="1400746800" type="schema" stype="bool" owner="gdm-simple-greeter" gettext_domain="gdm"
   <local_schema locale="C" short_desc="Do not show known users in the login window">
      <default type="bool" value="false"/>
      <longdesc>Set to true to disable showing known users in the login window.</longdesc>
   </local_schema>
</entry>

更改falsetrue并注销。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.