Instalando o Steam no Ubuntu 16.04 x64, Problemas de pacote de 32 bits

0

Quando tento instalar o Steam no meu Ubuntu 16.04 x64, vejo esses erros.

The following packages have unmet dependencies:
steam:i386 : 
Depends: libc6:i386 (>= 2.15) but it is not going to be installed

Depends: libstdc++6:i386 (>= 4.3) but it is not going to be installed
Depends: libx11-6:i386 but it is not going to be installed

Depends: libudev1:i386 but it is not going to be installed

Depends: libxinerama1:i386 but it is not going to be installed

Depends: libtxc-dxtn0:i386

Depends: libgl1-mesa-dri:i386 but it is not going to be installed

Depends: libgl1-mesa-glx:i386 but it is not going to be installed
steam-launcher : 
Depends: python-apt but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Então eu tento baixar o pacote de 32 bits:

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 

Mas também não está funcionando:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package lib32bz2-1.0
E: Couldn't find any package by glob 'lib32bz2-1.0'
E: Couldn't find any package by regex 'lib32bz2-1.0'

Como posso instalar o Steam?

    
por ibrahim alan 11.05.2016 / 08:22

2 respostas

1

O 16.04 é novo e todos os pacotes não estão prontos para uso em todos os servidores. Usar o servidor principal para baixar pacotes resolverá seu problema.

  1. Configurações do sistema
  2. Software e amp; Atualizações
  3. Selecione "Servidor principal" na seção "Download de"
por al0s 11.05.2016 / 19:51
1

Ok, primeiro pressione CTRL + ALT + T para abrir o seu terminal

sudo dpkg --add-architecture i386
sudo apt-get install libbz2-1.0:i386

Em seguida, instale o vapor com

sudo apt-get install steam

Isso pode não funcionar com sua configuração, mas isso funcionou para mim.

Nota: Para reportar erros no steam faça steam no seu terminal e recrie o que causou o erro, então relate-o para o steam linux github, localizado aqui link

    
por Kekly K 08.08.2016 / 00:05