Comment 40 for bug 292791

Revision history for this message
mangwills (mangwills) wrote : Re: [Bug 292791] Re: silent login/gdm failures and sudo segfaults with smbpasswd enabled

When I had the same problem before, libpam-smbpass was installed. Removing
samba completely removed that package. Libpam-smbpass was installed when I
shared a folder (which prompted me to have samba installed automatically).
The problem started when I tried stopping a shared printer with ongoing
print jobs in the CUPS web administration page.

William

2009/1/5 Steve Langasek <email address hidden>

> Michael, did you have the libpam-smbpass package installed previously?
> This failure is still not reproducible for me here; are you in a
> position to reinstall libpam-smbpass to see if the problem reappears for
> you?
>
> Walter, do you have libpam-smbpass installed on your inaccessible
> intrepid install?
>
> --
> silent login/gdm failures and sudo segfaults with smbpasswd enabled
> https://bugs.launchpad.net/bugs/292791
> You received this bug notification because you are a direct subscriber
> of the bug.
>
> Status in "pam" source package in Ubuntu: New
>
> Bug description:
> Ubuntu 8.10
>
> Had no problems with Intrepid at first, but then login wasn't possible
> anymore. After entering username and password in the gnome login-gui,
> nothing happend and I got the username prompt again. Same problem in the
> terminal. After entering username and password, I got again the login
> prompt. There was no message like 'login incorrect', just the prompt again.
>
> I solved the problem by editing the files /etc/pam.d/common-auth and
> /etc/pam.d/common-password:
>
> Old /etc/pam.d/common-auth (I'm not 100% sure about this):
> auth [succes=1 default=ignore] pam_unix.so nullok_secure
> auth requisite pam_dey.so
> auth required pam_permit.so
> auth optional pam_smbpass.so migrate
>
> New /etc/pam.d/common-auth:
> auth [succes=1 default=ignore] pam_unix.so nullok_secure
> auth requisite pam_dey.so
> auth required pam_permit.so
> #auth optional pam_smbpass.so migrate
>
> Old /etc/pam.d/common-password (again, not 100% sure about that):
> password [success=1 default=ignore] pam_uni.so obscure sha512
> password requisite pam_deny.so
> password required pam_permit.so
> password optional pam_smbpass.so nullok use_authtok use_first_pass
>
>
> New /etc/pam.d/common-password:
> password [success=1 default=ignore] pam_uni.so obscure sha512
> password requisite pam_deny.so
> password required pam_permit.so
> #password optional pam_smbpass.so nullok use_authtok use_first_pass
>