Verifique se o seu script ~/.profile
está bem. Por padrão, ~/.bashrc
deve ser carregado automaticamente por ~/.profile
da seguinte forma:
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi