Yesterday I have modified the file .profile, adding a new PATH at the end of it. After this change I can only login as guest user. Could these two things be connected? How could I solve this problem?
This is my .profile file content:
if [ -n "$BASH_VERSION" ]; then
include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
set PATH so it includes user's private bin directories
PATH="$HOME/bin:$HOME/.local/bin:$PATH"