Re: gdm automatic login

2007-01-03 Thread Lowell Gilbert
"Alla Gofman" <[EMAIL PROTECTED]> writes:

> Hello Joe!
>
>  
>
> I followed the suggestion that you gave in following link about gdm
> automatic login
>
> http://lists.freebsd.org/pipermail/freebsd-questions/2004-August/054439.
> html
>
> and my portable computer also hangs on login screen after I reboot.
>
> The message is "Authentication failed. Letters must be typed in the
> correct case.

That advice doesn't seem to be correct any more; the default PAM
configuration should be appropriate for use with GDM.  [I think; 
I don't actually use gdm, so I can't test this.]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


gdm automatic login

2007-01-02 Thread Alla Gofman
Hello Joe!

 

I followed the suggestion that you gave in following link about gdm
automatic login

http://lists.freebsd.org/pipermail/freebsd-questions/2004-August/054439.
html

and my portable computer also hangs on login screen after I reboot.

The message is "Authentication failed. Letters must be typed in the
correct case.

 

 

Please advice me.

 

Thank you in advance.

 

Regards

 

Alla Gofman | SW Validation Engineer | EMS Division | SanDisk | t. +972
(9) 7632546 | f. +972 (3) 5488666

 


__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: gdm automatic login

2004-08-02 Thread Chris Radlinski
That did it.  Thanks.
Chris
Joe Marcus Clarke wrote:
On Mon, 2004-08-02 at 23:40, Chris Radlinski wrote:
 

I'm running Gnome 2.4 on 5.2.1-RELEASE.  I've configured gdm to run at 
boot time and would like it to automatically log me in.  However, it 
always prompts me for a password.  Scanning the archives, I saw that 
others suggested copying /etc/pam.d/gdm to /etc/pam.d/gdm-autologin.  I 
did this but it didn't fix anything.  Here's my gdm/gdm-autologin:

#
# $FreeBSD: src/etc/pam.d/gdm,v 1.7 2003/04/30 21:57:54 markm Exp $
#
# PAM configuration for the "gdm" service
#
# auth
authrequiredpam_nologin.so  no_warn
#auth   sufficient  pam_krb5.so no_warn 
try_first_pass
#auth   sufficient  pam_ssh.so  no_warn 
try_first_pass
authrequiredpam_unix.so no_warn 
try_first_pass
authrequiredpam_permit.so

# account
#accountrequiredpam_krb5.so
account requiredpam_unix.so
# session
#sessionoptionalpam_ssh.so
session requiredpam_permit.so
What am I missing?
   

Remove the auth pam_unix.so entry.  The gdm-autologin PAM definition
should be:
auth   required pam_nologin.so
auth   required pam_permit.so
accountrequired pam_unix.so
sessionrequired pam_permit.so
As discussed in the freebsd-gnome archives.
 

Also, if I select "Reboot" or "Shut down" from the logout menu as root, 
the machine just hangs.  Any suggestions?
   

Don't do that.  If you want to try and track down what's happening,
configure you machine for a serial console, and make sure you're set to
drop into the debugger should the system panic.  Then, when it hangs,
you should hopefully get something on the serial console.  Consult the
handbook for more info.
Joe
 

Thanks for any help you can provide.
Chris Radlinski
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"
   


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: gdm automatic login

2004-08-02 Thread Joe Marcus Clarke
On Mon, 2004-08-02 at 23:40, Chris Radlinski wrote:
> I'm running Gnome 2.4 on 5.2.1-RELEASE.  I've configured gdm to run at 
> boot time and would like it to automatically log me in.  However, it 
> always prompts me for a password.  Scanning the archives, I saw that 
> others suggested copying /etc/pam.d/gdm to /etc/pam.d/gdm-autologin.  I 
> did this but it didn't fix anything.  Here's my gdm/gdm-autologin:
> 
> #
> # $FreeBSD: src/etc/pam.d/gdm,v 1.7 2003/04/30 21:57:54 markm Exp $
> #
> # PAM configuration for the "gdm" service
> #
>  
> # auth
> authrequiredpam_nologin.so  no_warn
> #auth   sufficient  pam_krb5.so no_warn 
> try_first_pass
> #auth   sufficient  pam_ssh.so  no_warn 
> try_first_pass
> authrequiredpam_unix.so no_warn 
> try_first_pass
> authrequiredpam_permit.so
>  
> # account
> #accountrequiredpam_krb5.so
> account requiredpam_unix.so
>  
> # session
> #sessionoptionalpam_ssh.so
> session requiredpam_permit.so
> 
> What am I missing?

Remove the auth pam_unix.so entry.  The gdm-autologin PAM definition
should be:

auth   required pam_nologin.so
auth   required pam_permit.so
accountrequired pam_unix.so
sessionrequired pam_permit.so

As discussed in the freebsd-gnome archives.

> 
> Also, if I select "Reboot" or "Shut down" from the logout menu as root, 
> the machine just hangs.  Any suggestions?

Don't do that.  If you want to try and track down what's happening,
configure you machine for a serial console, and make sure you're set to
drop into the debugger should the system panic.  Then, when it hangs,
you should hopefully get something on the serial console.  Consult the
handbook for more info.

Joe

> 
> Thanks for any help you can provide.
> 
> Chris Radlinski
> 
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
-- 
PGP Key : http://www.marcuscom.com/pgp.asc


signature.asc
Description: This is a digitally signed message part


gdm automatic login

2004-08-02 Thread Chris Radlinski
I'm running Gnome 2.4 on 5.2.1-RELEASE.  I've configured gdm to run at 
boot time and would like it to automatically log me in.  However, it 
always prompts me for a password.  Scanning the archives, I saw that 
others suggested copying /etc/pam.d/gdm to /etc/pam.d/gdm-autologin.  I 
did this but it didn't fix anything.  Here's my gdm/gdm-autologin:

#
# $FreeBSD: src/etc/pam.d/gdm,v 1.7 2003/04/30 21:57:54 markm Exp $
#
# PAM configuration for the "gdm" service
#
# auth
authrequiredpam_nologin.so  no_warn
#auth   sufficient  pam_krb5.so no_warn 
try_first_pass
#auth   sufficient  pam_ssh.so  no_warn 
try_first_pass
authrequiredpam_unix.so no_warn 
try_first_pass
authrequiredpam_permit.so

# account
#accountrequiredpam_krb5.so
account requiredpam_unix.so
# session
#sessionoptionalpam_ssh.so
session requiredpam_permit.so
What am I missing?
Also, if I select "Reboot" or "Shut down" from the logout menu as root, 
the machine just hangs.  Any suggestions?

Thanks for any help you can provide.
Chris Radlinski
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"