Erro ao instalar pacotes [RESOLVIDO]

1. Erro ao instalar pacotes [RESOLVIDO]

Mateus Augusto Saggin
mateus_zorba

(usa Debian)

Enviado em 23/08/2014 - 11:31h

Pessoal estou recebendo o seguinte erro quando vou instalar ou desinstalar qualquer pacote do meu servidor linux debian lenny:

Preconfiguring packages ...
dpkg: `ldconfig' not found on PATH.
dpkg: `start-stop-daemon' not found on PATH.
dpkg: `install-info' not found on PATH.
dpkg: `update-rc.d' not found on PATH.
dpkg: 4 expected program(s) not found on PATH.
NB: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)

Ja verifiquei os hosts e esta tudo certo. Alguma solucao?

Obrigado.


  


2. Re: Erro ao instalar pacotes [RESOLVIDO]

Luís Fernando C. Cavalheiro
lcavalheiro

(usa Slackware)

Enviado em 23/08/2014 - 12:16h

mateus_zorba escreveu:

Pessoal estou recebendo o seguinte erro quando vou instalar ou desinstalar qualquer pacote do meu servidor linux debian lenny:

Preconfiguring packages ...
dpkg: `ldconfig' not found on PATH.
dpkg: `start-stop-daemon' not found on PATH.
dpkg: `install-info' not found on PATH.
dpkg: `update-rc.d' not found on PATH.
dpkg: 4 expected program(s) not found on PATH.
NB: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)

Ja verifiquei os hosts e esta tudo certo. Alguma solucao?

Obrigado.


Sabe, lendo a mensagem de erro eu vi isso aqui
NB: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin.

Posta aqui como está a variável PATH no seu sistema


3. Re: Erro ao instalar pacotes [RESOLVIDO]

Mateus Augusto Saggin
mateus_zorba

(usa Debian)

Enviado em 23/08/2014 - 21:42h

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

if [ "$PS1" ]; then
if [ "$BASH" ]; then
PS1='\u@\h:\w\$ '
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi

export PATH

umask 022


4. Re: Erro ao instalar pacotes [RESOLVIDO]

Luís Fernando C. Cavalheiro
lcavalheiro

(usa Slackware)

Enviado em 25/08/2014 - 11:00h

mateus_zorba escreveu:

$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

if [ "$PS1" ]; then
if [ "$BASH" ]; then
PS1='\u@\h:\w\$ '
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi

export PATH

umask 022


Você está tentando rodar o apt-get como usuário comum, por acaso?


5. Re: Erro ao instalar pacotes [RESOLVIDO]

Mateus Augusto Saggin
mateus_zorba

(usa Debian)

Enviado em 25/08/2014 - 11:02h

lcavalheiro escreveu:

mateus_zorba escreveu:

$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

if [ "$PS1" ]; then
if [ "$BASH" ]; then
PS1='\u@\h:\w\$ '
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi

export PATH

umask 022


Você está tentando rodar o apt-get como usuário comum, por acaso?


Essa é a questão, estou logado e rodando como root. Não muito estranho isso.



6. Re: Erro ao instalar pacotes [RESOLVIDO]

Luís Fernando C. Cavalheiro
lcavalheiro

(usa Slackware)

Enviado em 25/08/2014 - 11:07h

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?


7. Re: Erro ao instalar pacotes [RESOLVIDO]

Mateus Augusto Saggin
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.


8. Re: Erro ao instalar pacotes [RESOLVIDO]

Luís Fernando C. Cavalheiro
lcavalheiro

(usa Slackware)

Enviado em 25/08/2014 - 11:14h

Se resolveu beleza. Disponha se precisar de mais.






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts