什么是LightDM中的“其他”帐户?


10

我使用Ubuntu Oneiric,我想知道其他帐户的用途是什么?它不会出现在用户管理器中。如何删除?

Answers:


12

其他实际上不是帐户,而是允许您显式输入用户名的项目。有时,您不想在问候框中显示用户,但仍然希望能够与他们一起登录。那就是您选择Other的时候

关于删除该条目:我认为这是不可能的。似乎它在迎宾员中是硬编码的:

...
else
{
    foreach (var user in LightDM.UserList.get_instance ().users)
    {
        var label = user.real_name;
        if (user.real_name == "")
            label = user.name;
        user_list.add_entry (user.name, label, null);
    }
    if (greeter.has_guest_account_hint)
        user_list.add_entry ("*guest", _("Guest Account"), null);
    user_list.add_entry (null, _("Other..."));
}
...
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.