Results 1 to 3 of 3

Thread: Removing single user from gdm

  1. #1
    Join Date
    May 2010
    Beans
    90
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Removing single user from gdm

    I have a quick question that I haven't been able to find an answer for so far. Is it possible to 'hide' a user from the user list in gdm? Note that I don't want to remove it entirely, I just want a user that you can only get into by clicking 'other', entering your name and password.

    Can anybody help me?

  2. #2
    Join Date
    Feb 2007
    Location
    Romania
    Beans
    Hidden!

    Re: Removing single user from gdm

    Yes. :)

    Edit the /etc/gdm/gdm.schemas file:
    Code:
    gksu gedit /etc/gdm/gdm.schemas
    Find the Exclude section:
    Code:
    ...
        <schema>
          <key>greeter/Exclude</key>
          <signature>s</signature>
          <default>bin,root,daemon,adm,lp,sync,shutdown,halt,mail,news,uucp,operator,nobody,nobody4,noaccess,postgres,pvm,rpm,nfsnobody,pcap</default>
        </schema>
    ...
    and add the user to the list:
    Code:
    ...
        <schema>
          <key>greeter/Exclude</key>
          <signature>s</signature>
          <default>username,bin,root,daemon,adm,lp,sync,shutdown,halt,mail,news,uucp,operator,nobody,nobody4,noaccess,postgres,pvm,rpm,nfsnobody,pcap</default>
        </schema>
    ...
    where username is the login name of the user.

  3. #3
    Join Date
    May 2010
    Beans
    90
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Removing single user from gdm

    Thank you so much : )

    solved!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •