Estoy enfrentando un problema de bucle de inicio de sesión en Ubuntu 18.04 similar aOtro problema de bucle de inicio de sesión
También cambié el .profile
archivo para que:
grep -H PATH ~/.profile
/home/trilok/.profile:PATH=/usr/local/bin:$PATH
Pero también obtengo:
grep -H PATH ~/.bash_profile
~/.bash_profile: No such file or directory
...y...
grep -H PATH ~/.bashsrc
~/.bashsrc: No such file or directory
El contenido de xsession-errors es el siguiente:
/usr/bin/gettext.sh: line 88: gettext command not found
/usr/bin/gettext.sh: line 88: envsubst command not found
/usr/bin/gettext.sh: line 88: envsubst command not found
/usr/lib/lightdm/config-error-dialog.sh: line19: gettext: command not found
/usr/lib/lightdm/config-error-dialog.sh: line20: fold: command not found
/usr/lib/lightdm/config-error-dialog.sh: line28: zenity: command not found
/usr/sbin/lightdm-sesion: line 33: cat: command not found
/usr/sbin/lightdm-sesion: line 34: truncate: command not found
/usr/sbin/lightdm-sesion: line 33: cat: command not found
/usr/sbin/lightdm-sesion: line 34: truncate: command not found
/usr/sbin/lightdm-sesion: line 106: ls: command not found
/usr/sbin/lightdm-sesion: line 117: exec: command not found
Respuesta1
Ejecuté los siguientes comandos desde la terminal y funcionó.
echo "exportar RUTA="/bin:$RUTA"" >> ~/.profile
echo "exportar RUTA="/usr/bin:$RUTA"" >> ~/.profile
Aunque el error en ./xsession_errors aún existe, el problema del bucle de inicio de sesión está resuelto.