Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: HowTo: enable passwordless logins via GDM

  1. #1
    Join Date
    Dec 2004
    Location
    Stroud, UK
    Beans
    38

    HowTo: enable passwordless logins via GDM

    Given that this seems to me like a fairly simple and common objective, and seeing as how I have not been able to find a solution till now, I thought I'd make a start on a mini-howto. The below instructions work in fair conditions but I am a newbie, so it may be full of holes. Perhaps someone with a bit more technical knowledge could take a look at this for me and see if it can be improved?

    (MINI) HOW TO ALLOW SPECIFIC USERS TO LOG ON VIA GDM LOCALLY WITHOUT ENTERING A PASSWORD

    [1] Why Bother?
    Well, partly because its just more convenient in some cases. If you are on a local network that is secure from remote access, where a machine is shared by multiple desktop users and where you trust some of them at least, why not let them have the benefits of their own account without the inconvenience of entering a password in GDM to log in? I know its no real hassle, but it is an extra step nonetheless. Anyway, choice is what we're all about, right? Partly also because Windows (and KDM!) lets you do this, and as a part of migrating folk over from Windows it is critical to not underestimate how important it is to minimise how much you take folk out of their familiarity zone. Even in small things like this. If you use a user browser in GDM, this will allow the user to click on the picture representing them and they're in!

    [2] Have a word with PAM!
    PAM is the authentication model employed in Ubuntu. The first thing to do is to edit the PAM file that specifies how authentication should work with GDM. Open the file /etc/pam.d/gdm using your favorite text editor, in my case:
    $ sudo nano /etc/pam.d/gdm
    Add lines that specify a password is not required for the users who are listed in a file that you are going to make later on. The new line in the file example comes between the #start and #end comments, all the other lines were there anyway and remain untouched:
    ----------------------
    #%PAM-1.0
    auth requisite pam_nologin.so
    auth required pam_env.so
    # start
    auth sufficient pam_listfile.so item=user sense=allow file=/etc/X11/gdm/nopassusers.txt onerr=fail
    # end
    @include common-auth
    @include common-account
    session required pam_limits.so
    @include common-session
    @include common-password
    ----------------------

    [3] Tell PAM who to let in without a pass
    Go to this following location: /etc/X11/gdm/
    Make a new text file there called nopassusers.txt
    In this file, list the usernames of the users who can log in without entering a password. Put each user on a new line. Only the username is required.

    OK - that should be it. Like I say, I know this works but have no idea whether it is sensible. Please if you have knowledge contribute to making this a better howto!
    Last edited by darkfox; January 29th, 2006 at 03:30 PM.

  2. #2
    Join Date
    Oct 2004
    Location
    Panamá
    Beans
    1,427
    Distro
    Ubuntu Studio 9.04 Jaunty Jackalope

    Re: HowTo: enable passwordless logins via GDM

    you can use any filename and path instead of /etc/X11/gdm/nopassusers.txt as long as you also use the same path/filename in the "file=XXX" portion of the /etc/pam.d/gdm file.
    "Some people says that if you run a Microsoft Midori iso backwards you will hear demon voices commanding you to worship Satan". But that's nothing. If you run it forward it will install Microsoft Midori.

  3. #3
    Join Date
    Sep 2007
    Beans
    5

    Re: HowTo: enable passwordless logins via GDM

    Does anyone know how to make this work in Ubuntu 7.10 (Gutsy Gibbon)? It worked like a charm in 7.04.

  4. #4
    Join Date
    Sep 2007
    Beans
    5

    Re: HowTo: enable passwordless logins via GDM

    OK, it still works fine
    The path /etc/X11/gdm is now /etc/gdm so you just have to update the path to your file containing the users allowed to login without passwords.

  5. #5
    Join Date
    Nov 2006
    Beans
    12

    Re: HowTo: enable passwordless logins via GDM

    How can i login without entering password in Ubuntu 8.04?

  6. #6
    Join Date
    Feb 2008
    Beans
    16

    Re: HowTo: enable passwordless logins via GDM

    I did this and I got it to work so when you start up it goes into the first account without having to enter a password, and when I switch to login the other account it logs in without a password. However from that point on to switch users it requires a password. It's like it doesn't require a pssword to login, but it requires one to switch between users that are logged in. 8.04.

  7. #7
    Join Date
    Feb 2008
    Beans
    16

    Re: HowTo: enable passwordless logins via GDM

    Anyone? I would really like to have this work.

  8. #8
    Join Date
    May 2007
    Location
    Vancouver, Bc, Canada
    Beans
    Hidden!

    Re: HowTo: enable passwordless logins via GDM

    http://ubuntuforums.org/showthread.php?p=4510108
    for any interested, that is a extremely simple way of making a account have no password to enter

  9. #9
    Join Date
    Dec 2005
    Location
    Bourenmouth, Dorset
    Beans
    32
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HowTo: enable passwordless logins via GDM

    For Gnome
    In /etc/pam.d files called gdm and gdm-autologin.
    I moved gdm to gdm.logingreq and made a symbolic link from gdm-autologin to gdm.

  10. #10
    Join Date
    Jun 2009
    Location
    Georgetown, TX
    Beans
    260

    Re: HowTo: enable passwordless logins via GDM

    If all you want is a single MS Windows guest-like account, I found a slightly simpler PAM configuration.

    Firstly, I will comment that (apparently) Ubuntu varaints do not allow an account to be named "guest" (which is frustrating), so I created an acount named "anyone". (However, this turned out a to be a better name than "guest" anyway, because it appears first in alphabetical order on my face browser.)

    From -->the PAM online documentation<-- (especially -->this page<--), I decided to just add the following line:

    Code:
    auth   sufficient   pam_succeed_if.so user = anyone
    to the beginning of the /etc/pam.d/gdm file (after copying the file to a backup version, of course). If you want to use a different guest-like account name, say, "guestuser" (instead of "anyone"), then the line would be:

    Code:
    auth   sufficient   pam_succeed_if.so user = guestuser
    and so on. After the edit, I simply logged out and then clicked on all of the users in my face browser, and they all asked for passwords - except "anyone". When I clicked on "anyone" with just a single click I was logged in without being prompted for a password.

    Please, experts, let us know if this is a bad way to do it. (I first tried adding the line to the /etc/pam.d/login file, but it didn't work, and I am confused by this.)
    Why is there something rather than nothing?

Page 1 of 2 12 LastLast

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
  •