O plug-in do Google Talk não funciona no Debian de 64 bits

4

Eu estou usando o Siduction 64 bit (esta é uma distribuição Debian que roda no sid branch), e o plugin do Google Talk parou de funcionar. Meu sistema está atualizado e testei o Chrome e o Firefox. Quando eu participo de um Hangout do Google, ele é iniciado corretamente, mas depois é interrompido.

Olhando para ~ / .config / google-googletalkplugin / gtbplugin.log, consigo ver o seguinte:

[000:006] Warning(clientchannel.cc:437): Could not initiate GoogleTalkPlugin connection 
[000:006] GoogleTalkPlugin not running. Starting new process... 
[000:006] Starting Flute 
[000:006] Warning(optionsfile.cc:47): Load: Could not open file, err=2 
[000:006] Warning(pluginutils.cc:267): Failed to get GoogleTalkPlugin path. Trying default. 
[000:012] Started GoogleTalkPlugin, path=/opt/google/talkplugin/GoogleTalkPlugin
[000:012] SendConnectStatus: Connect Status: 
[ 
   "f-connect", 

   { 
      "step" : "2" 
   } 
] 

[000:013] Waiting for GoogleTalkPlugin to start... 
[000:655] Starting client channel. 
[000:655] Warning(clientchannel.cc:462): Unreadable or no port file.  Could not initiate GoogleTalkPlugin connection 
[000:655] SendConnectStatus: Connect Status: 
[ 
   "f-connect", 

   { 
      "error" : -1, 
      "step" : "0" 
   } 
] 

[000:655] Warning(clientchannel.cc:437): Could not initiate GoogleTalkPlugin connection

Alguém sabe como consertar isso?

Obrigado

    
por oneself 12.10.2013 / 20:09

1 resposta

4

Isso acabou sendo um problema da libudev. Parece que eu tinha duas versões instaladas por algum motivo. Removendo libudev0 resolveu o problema. Minha versão do chrome dependia dessa versão, então eu tive que reinstalar também.

$ dpkg --get-selections | grep -i libudev       
libudev0:amd64                                  install
libudev0:i386                                   deinstall
libudev1:amd64                                  install
libudev1:i386                                   install
$ apt-get remove google-chrome-beta
$ apt-get remove libudev0
$ dpkg -i ./google-chrome-beta_current_amd64.deb
    
por 22.10.2013 / 16:15