mateus_zorba
(usa Debian)
Enviado em 25/08/2014 - 11:12h
lcavalheiro escreveu:
Ou você não está logando como root ou o PATH do seu root não está sendo setado corretamente pelo /etc/profile. Existe algum /root/.bashrc ou /root/.bash_profile no seu sistema?
$PATH
bash: /bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin: No such file or directory
Arquivo profile:
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/local/bin:/usr/bin:/bin:/usr/games"
fi
export PATH
if [ "$PS1" ]; then
if [ "$BASH" ]; then
PS1='\u@\h:\w\$ '
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
umask 022
Obrigado pela ajuda, eu somente alteração a posição do comando "export PATH" (vi em outro tópico) e resolveu meu problema.