Ubuntu - O Steam não inicia

2

Depois de corrigir outro problema com a falta de pacotes, é o que recebo quando tento iniciar o Steam:

Running Steam on ubuntu 14.04 64-bit
STEAM_RUNTIME is enabled automatically
Installing breakpad exception handler for appid(steam)/version(0)
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast

Eu tentei reinstalar várias vezes, não funcionou. Também tentei deletar o appcache como algumas outras respostas disseram.

Qualquer ajuda muito apreciada.

ps. o que tenho para aprender a entender essas mensagens de erro

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:
 gnome-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
 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.
    
por uniqueID 07.09.2015 / 22:44

1 resposta

0

Execute o seguinte comando para instalar esse driver (swrast_dri.so):

sudo apt-get update
sudo apt-get install libgl1-mesa-dri libgl1-mesa-dri:i386

Por favor poste qualquer erro, obrigado!

Geralmente, quando vejo esse erro, estou executando:

sudo apt-get clean
sudo apt-get update
sudo apt-get dist-upgrade

resolveu o problema.

No entanto, às vezes você pode precisar tentar instalar (ou desinstalar) aplicativos teimosos individualmente para fazer as coisas.

Para entender a mensagem, instale as dependências necessárias individualmente para ver qual é o problema (ou isso pode corrigir o problema):

sudo apt-get install --reinstall libcheese-gtk23 libcheese7

Se a próxima mensagem de erro diz blá blá blá depende de blá blá blá , tente instalar blá blá blá e vá de lá.

    
por mchid 08.09.2015 / 00:08