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 のエラーはまだ存在しますが、ログイン ループの問題は解決されました。