Ubuntu 18.04 – Problem mit der Anmeldeschleife

Ubuntu 18.04 – Problem mit der Anmeldeschleife

Ich habe ein Login-Loop-Problem in Ubuntu 18.04 ähnlich wieein weiteres Problem mit der Anmeldeschleife

Ich habe die .profileDatei außerdem so geändert:

grep -H PATH ~/.profile 
/home/trilok/.profile:PATH=/usr/local/bin:$PATH

Aber ich bekomme auch:

grep -H PATH ~/.bash_profile 
~/.bash_profile: No such file or directory

...Und...

grep -H PATH ~/.bashsrc 
~/.bashsrc: No such file or directory

Der Inhalt von xsession-errors ist wie folgt:

/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

Antwort1

Ich habe die folgenden Befehle vom Terminal aus ausgeführt und es hat funktioniert.

echo "export PATH="/bin:$PATH"" >> ~/.profile

echo "export PATH="/usr/bin:$PATH"" >> ~/.profile

Obwohl der Fehler in ./xsession_errors weiterhin besteht, ist das Problem der Anmeldeschleife gelöst.

verwandte Informationen