>> On 02/02/10 DJ Lucas wrote: > >> >> Almost done! >> > > One more. Gnome screensaver doesn't die when mouse or keyboard movement > occurs with only blank screen. When touching keys, the screen briefly > flashes the desktop background and then blanks again. killall -KILL > gnome-screensaver returns the desktop. >
This is due to an invalid pam configuration file for gnome-screensaver. In fact, three of them are invalid: dj [ /etc/pam.d ]$ grep -lr system-auth * gnome-screensaver polkit polkit-1 Need a system-auth file created for them when installing pam: Looks like this should work nicely: # Begin /etc/pam.d/system-auth auth required pam_securetty.so auth required pam_unix.so account required pam_access.so account required pam_unix.so session required pam_env.so session required pam_limits.so session required pam_unix.so password required pam_cracklib.so retry=3 password required pam_unix.so md5 shadow use_authtok # End /etc/pam.d/system-auth -- DJ Lucas -- This message has been scanned for viruses and dangerous content, and is believed to be clean. -- http://linuxfromscratch.org/mailman/listinfo/blfs-dev FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
