Tentando instalar o Steam no Ubuntu 14.04 LTS

0

Aqui está o erro que estou recebendo ao tentar instalar o vapor:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
    libgl1-mesa-glx:i386 : Depends: libglapi-mesa:i386 (= 10.1.3-0ubuntu0.6)
    unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed
                    Depends: libcheese7 (>= 3.0.1) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
Press return to continue: 

Estou realmente empacado e tentei instalar as dependências com vários erros. Qualquer ajuda seria muito apreciada!

Obrigado,

    
por Joe Durso 19.02.2016 / 03:52

3 respostas

0

Tente executar estes comandos:

sudo dpkg --add-architecture i386
sudo apt-get update

Em seguida, execute novamente o instalador do Steam.

    
por MKay 19.02.2016 / 09:07
1

Obrigado a todos por toda a ajuda sobre isso! Eu agora tenho vapor trabalhando. Aqui estão os passos que tomei para colocá-lo em prática:

sudo dpkg --add-architecture i386
sudo apt-get update

Então eu fiz a instalação:

sudo apt-get install -y steam

Agora o Steam está em execução e estou no caminho certo para baixar meus jogos e jogos no Linux!

Obrigado novamente!

    
por Joe Durso 20.02.2016 / 01:54
0

Digite o seguinte comando:

sudo apt-get install -y steam

(Se você já instalou o Steam, pule para o próximo passo)

Edite o /etc/ld.so.conf.d/steam.conf

sudo nano /etc/ld.so.conf.d/steam.conf

Cole estas duas linhas

/usr/lib32
/usr/lib/i386-linux-gnu/mesa

salve e saia

Executar sudo ldconfig

e sudo apt-get install --reinstall libgl1-mesa-glx:i386

Executar vapor

    
por GAD3R 19.02.2016 / 14:48