Erro com sudo apt-get -f install (ldconfig não encontrado)

1

Estou usando 14.04 LTS. Quando digito sudo apt-get -f install no terminal, recebo este erro:

Can't exec "locale": No such file or directory at /usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
dpkg: warning: 'ldconfig' not found in PATH or not executable
dpkg: error: 1 expected program not found in PATH or not executable
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin
E: Sub-process /usr/bin/dpkg returned an error code (2)

Por favor me ajude, obrigado.

Em resposta a Faizan, que disse "tente executar sudo dpkg-reconfigure -a " nos comentários. Quando tentei, recebi esta mensagem:

Can't exec "locale": No such file or directory at /usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
acpid stop/waiting
acpid start/running, process 11426
/var/lib/dpkg/info/activity-log-manager.postinst: 5: /var/lib/dpkg/info/activity-log-manager.postinst: ldconfig: not found

Editar:

Can't exec "locale": No such file or directory at /usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
dpkg: warning: 'ldconfig' not found in PATH or not executable
dpkg: error: 1 expected program not found in PATH or not executable
Note: root's PATH should usually contain /usr/local/sbin, /usr/sbin and /sbin
E: Sub-process /usr/bin/dpkg returned an error code (2)
    
por enduser 30.03.2015 / 17:31

1 resposta

3

Tente esta solução alternativa se funcionar para você. Certifique-se de que você não ativou repos instáveis para diferentes versões ou atualizações pré-lançadas, mas para 14.04 LTS recomenda-se apenas o check-in - > configurações do sistema / software & amp; atualizações.

execute:

sudo apt-get -f install

sudo dpkg-reconfigure libc6

sudo dpkg-reconfigure libc-bin

sudo apt-get install --reinstall libc6

sudo apt-get install --reinstall libc-bin

sudo apt-get dist-upgrade

Outra maneira:

Faça o download de libc-bin aqui , por exemplo

Então você terá que extraí-lo:

dpkg -x libc-bin*.deb unpacked/

copie os arquivos para o sistema:

sudo cp unpacked/sbin/ldconfig /sbin/

Ou abra o Nautilus com:

gksudo nautilus

e faça esta interface gráfica, clique com o botão direito em um pacote .deb e escolha extrair aqui e copie para o local de destino.

E então:

sudo apt-get install --reinstall libc-bin

sudo apt-get install -f
    
por JoKeR 30.03.2015 / 19:23