Não é possível executar “locale”: Nenhum arquivo ou diretório

1

Eu sou novo no Linux. Eu estava tentando instalar o vinho e depois de seguir as instruções de um vídeo do youtube eu cheguei ao ponto em que precisava instalar o Wine no Ubuntu Software Center. O problema é que o Ubuntu Software Center não funciona mais, ele me pede para repará-lo, e quando eu pressiono o botão Reparar, isso me dá este erro:

installArchives() failed: 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.
Preconfiguring packages ...
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.
Preconfiguring packages ...
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.
Preconfiguring packages ...
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.
Error in function: 
SystemError: E:Sub-process /usr/bin/dpkg returned an error code (2)

Por favor me ajude. Obrigado: D

    
por Alex 01.04.2012 / 12:14

3 respostas

2

Solução real está aqui:

apt-get download libc-bin
dpkg -x libc-bin*.deb unpackdir/

sudo cp unpackdir/sbin/ldconfig /sbin/

sudo apt-get install --reinstall libc-bin
sudo apt-get install -f

divirta-se! :)

    
por ori0n 28.05.2016 / 16:06
0

tente fazer isso

sudo apt-get install -f && sudo dpkg --configure -a && sudo apt-get update

Após isso, tente reinstalar o Wine

    
por twister_void 01.04.2012 / 12:31
0

Instale o pacote libc-bin . Apenas pressione Ctrl + Alt + T no seu teclado para abrir o Terminal. Quando se abre, execute o comando abaixo.

sudo apt-get install libc-bin
    
por green 08.09.2012 / 20:03