우분투 18.04 로그인 루프 문제

우분투 18.04 로그인 루프 문제

Ubuntu 18.04에서 다음과 유사한 로그인 루프 문제에 직면했습니다.또 다른 로그인 루프 문제

.profile또한 다음과 같이 파일을 변경했습니다 .

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

그러나 나는 또한 다음을 얻습니다:

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

...그리고...

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

xsession-errors의 내용은 다음과 같습니다.

/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

답변1

터미널에서 다음 명령을 실행했는데 작동했습니다.

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

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

./xsession_errors의 오류는 여전히 존재하지만 로그인 루프 문제는 해결되었습니다.

관련 정보