web-dev-qa-db-ja.com

GoogleトークプラグインがDebian64ビットで機能しない

Siduction 64ビット(これはsidブランチから実行されるDebianディストリビューションです)を使用していますが、Googleトークプラグインが機能しなくなりました。私のシステムは最新で、ChromeとFirefoxの両方をテストしました。Googleハングアウトに参加すると、正しく起動しますが、ハングします。

〜/ .config/google-googletalkplugin/gtbplugin.logを見ると、次のことがわかります。

[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

誰かがこれを修正する方法を知っていますか?

ありがとうございました

4
oneself

これはlibudevの問題であることが判明しました。なんらかの理由で2つのバージョンがインストールされたようです。 libudev0を削除すると、問題が解決しました。私のバージョンのchromeはそのバージョンに依存していたので、それも再インストールする必要がありました。

$ 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
4
oneself