El mar, 28-01-2003 a las 21:45, Ole Laursen escribi�: > F�lix Blanco Mart�n <[EMAIL PROTECTED]> writes: > > > > I do not know if the LANG problem is solved in gdm as I hadnt looked > > > into it. There was a pam problem that was fixed in this version. I will > > > keep you all informed when the lang is solved. > > > > It seems the problem has been fixed. > > I thought so too. But I was fooled by the fact that the environment is > loaded when you restart GDM as root. Reboot, then English again.
gdm doesn't read /etc/environment. It reads /etc/profile. You've got to set LANG there. "/usr/bin/gdm" is only a script: #!/bin/sh # A script so that # 1) we read the standard system env vars # 2) syadmins/integrators can add their own private options etc... test -f /etc/profile && . /etc/profile exec /usr/bin/gdm-binary "$@" # fallback, use PATH exec gdm-binary "$@"

