Google Talk-Plugin funktioniert nicht in Debian 64-Bit

3391
oneself

Ich verwende Siduction 64 Bit (dies ist eine Debian-Distribution, die aus dem Sid-Zweig läuft), und das Google Talk-Plugin funktioniert nicht mehr. Mein System ist auf dem neuesten Stand und ich habe sowohl Chrome als auch Firefox getestet. Wenn ich einem Google Hangout beitrete, wird er ordnungsgemäß gestartet, hängt jedoch dann.

Wenn Sie ~ / .config / google-googletalkplugin / gtbplugin.log betrachten, kann ich Folgendes sehen:

[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 

Weiß jemand, wie man das beheben kann?

Vielen Dank

4
Ist Ihr Chat - Telepathy Indicator Service aktiviert? BlueBerry - Vignesh4303 vor 11 Jahren 0
Wie überprüfe ich das? oneself vor 11 Jahren 0

1 Antwort auf die Frage

4
oneself

Dies stellte sich als libudev-Problem heraus. Anscheinend hatte ich aus irgendeinem Grund zwei Versionen installiert. Durch das Entfernen von libudev0 wurde das Problem behoben. Meine Version von Chrome war von dieser Version abhängig, sodass ich diese ebenfalls neu installieren musste.

$ 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 
Das gleiche funktionierte für mich mit Gtalk-Plugin für Firefox-nächtliche amd64 in Debian-Unstable. FF wurde nach dem Entfernen von libudev0 gerade neu gestartet, um GTalk zu reparieren. HUB vor 11 Jahren 0
There's a good explanation of this issue in Google forums - http://productforums.google.com/d/msg/hangouts/vYsaeEnXJXs/jv2DJPU7YpEJ When removal of libudev0 is not desired (breaks chrome) it seems possible to get Chrome & Talk to use libudev1: ln -s /lib/x86_64-linux-gnu/libudev.so.1 /opt/google/chrome/lib/libudev.so.0 Oren_H vor 10 Jahren 0