2

I'm running Redhat 5.6 with the gnome display manager. I would like to configure the login manager so that there is no echo of the password when typing it in (no asterisks or the like). I have edited the files /usr/share/gdm/defaults.conf and /usr/share/gdm/factory-defaults.conf and changed the line

#UseInvisibleInEntry=false

to

UseInvisibleInEntry=true,

but I still get a password echo of asterisks at the login screen.

3 Answers 3

3

Given that a reboot fixed the problem, what you missed is that you needed to tell the login manager (gdm) to reload its configuration. Most system services do not reload their configuration when you change it, in fact few applications automatically reload their configuration files if you edit the file directly (as opposed to going through that application's configuration UI).

In the case of Gdm, it doesn't have a command to reload its configuration file. All you can do is restart it; that doesn't happen automatically when you log out (it's still the same instance of gdm until you stop it).

The usual way to restart a system service is to run something like one of the following commands (I forget which service manager your version of Red Hat uses):

restart ssh
service ssh restart
/etc/init.d/ssh restart

However, restarting gdm logs out all users that logged in through it, so it's generally not desirable. Instead, run gdm-safe-restart so that gdm will restart as soon as the last user logs out. (This doesn't work on some versions/installations of gdm, notably on Ubuntu 10.04.)

1

Actually if you could restart gdm using some mechanism then you would not have to reboot.

This blog entry explains how to restart gdm.

0

A reboot of the system solved the problem. I feel like maybe this is an obvious answer, but in Linux, so many system changes take effect immediately or at least when a user logs out and in. This particular change, however, required a reboot.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.