Eu instalei recentemente o Ubuntu 14.04 e não consigo baixar nada

1

Deixe-me começar dizendo que sou muito novo no Linux em geral. Recentemente instalei o 14.04 e baixei algumas coisas primeiro: Gimp e Chrome, mas quando tentei fazer o Steam fazer o download, mas quando eu iniciei, o terminal diz:

Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Então o terminal fecha e uma caixa aparece dizendo:

You are missing the following 32-bit libraries, and Steam may not run: libc.so.6

Quando tento executar o "sudo apt-get -f install" ele faz isso:

Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
libc-bin
The following NEW packages will be installed:
libc-bin
0 upgraded, 1 newly installed, 0 to remove and 77 not upgraded.
Need to get 0 B/1,168 kB of archives.
After this operation, 3,529 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
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)

E o centro de software diz que há um problema com o meu software atual. Alguém pode ajudar?

    
por Justin Weaver 01.05.2015 / 02:38

2 respostas

0

Tenho certeza que isso é uma duplicata, mas aqui está a resposta. Você precisa instalar a biblioteca que o Steam precisa. Faça isso executando sudo apt-get install libc6* . Isso deve corrigir o problema do Steam e, esperamos, resolver o outro também.

    
por TheWanderer 01.05.2015 / 02:46
0

Seu problema é que você está perdendo libc-bin , mas não pode instalá-lo. Para instalá-lo:

Inicialize a partir de uma mídia de instalação do Ubuntu e abra um terminal | Monte sua partição raiz do Ubuntu: sudo mount /dev/sdX /mnt
Chroot no seu sistema: sudo chroot /mnt /bin/bash
Instalar o libc-bin: sudo apt-get install libc-bin
Reinicie o seu sistema e ele deve funcionar bem

    
por Pabi 01.05.2015 / 03:24