Must have to do with diff between su-ing over ssh vs when logged directly into machine
Suspeito que você execute o comando su
sem traço ( -
) e, se for o caso, ele chamará um shell não-login interativo. Combine com você só seguindo em /root/.bashrc
:
# Test for an interactive shell. There is no need to set anything
# past this point for scp and rcp, and it's important to refrain from
# outputting anything in those cases.
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
(não fonte /etc/bashrc
)
ao passo que se você fizer login ou usar o su -
, ele invocará um shell login , /etc/profile
será lido e sharedAliases.sh
será executado.
Para ver qual arquivo é lido com diferentes shells, adicione logs a todos esses arquivos executando os seguintes comandos como root:
echo "echo 'running /etc/bashrc'" >> /etc/bashrc
echo "echo 'running /etc/profile'" >> /etc/profile
echo "echo 'running /root/.bashrc'" >> ~/.bashrc
Crie um alias de teste:
# echo "alias list='ls'" > /etc/profile.d/test.sh
Agora, faça login como usuário normal e use su
. Você verá algo assim:
$ su
Password:
running /root/.bashrc
bash-3.2# list
bash: list: command not found
e com su -
:
$ su -
Password:
running /etc/profile
running /root/.bashrc
# list
total 226540
-rw-rw-r-- 1 root root 60148987 Apr 1 2011 3241948.flv