LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 08-22-2012, 12:13 PM   #1
hpp3
LQ Newbie
 
Registered: Jan 2007
Location: Bremerton, WA USA
Distribution: Debian Testing
Posts: 15

Rep: Reputation: 3
Google Talk plugin STILL not working


I know this problem has existed for quite some time, but there's nothing I can find on the internets to actually fix this, and Google has been rather mum about it as far as I can find, so I'm going to try here.

Kernel: 3.1.0-1-amd64, Debian "Wheezy".
Browsers tried: Google Chrome, Chromium, Midori, Firefox, Firefox 64-bit nightly.

So I download the 64-bit .deb from Google, install and open Gmail in a browser.
Hit the "call phone" button and a dial pad opens with a link at the top that says "Please download the voice plugin to make a call."
Funny, didn't I just do that?
Click the link and I get a webpage (http://www.google.com/intl/en/chat/voice/) with a big blue button that says "Try it now".
Click big blue button.
Another page opens with my Gmail and the dialpad that STILL says "Please download the voice plugin..."

Running the browser from a terminal, I get this message:
Code:
 
No bp log location saved, using default.
[000:000] Browser XEmbed support present: 1
[000:000] Browser toolkit is Gtk2.
[000:000] Using Gtk2 toolkit
[000:020] Starting client channel.
[000:020] Warning(clientchannel.cc:435): Unreadable or no port file.  Could not initiate GoogleTalkPlugin connection
[000:031] Warning(clientchannel.cc:410): Could not initiate GoogleTalkPlugin connection
[000:031] GoogleTalkPlugin not running. Starting new process...
[000:031] Warning(optionsfile.cc:47): Load: Could not open file, err=2
[000:031] Warning(pluginutils.cc:260): Failed to get GoogleTalkPlugin path. Trying default.
[000:035] Started GoogleTalkPlugin, path=/opt/google/talkplugin/GoogleTalkPlugin
[000:036] Waiting for GoogleTalkPlugin to start...
[001:110] Attempting to connect to GoogleTalkPlugin...
[001:110] Warning(clientchannel.cc:435): Unreadable or no port file.  Could not initiate GoogleTalkPlugin connection
[001:111] Warning(clientchannel.cc:410): Could not initiate GoogleTalkPlugin connection
[001:112] Waiting for GoogleTalkPlugin to start...
[002:113] Attempting to connect to GoogleTalkPlugin...
[002:114] Warning(clientchannel.cc:435): Unreadable or no port file.  Could not initiate GoogleTalkPlugin connection
[002:115] Warning(clientchannel.cc:410): Could not initiate GoogleTalkPlugin connection
[002:115] Waiting for GoogleTalkPlugin to start...
[003:116] Attempting to connect to GoogleTalkPlugin...
[003:116] Warning(clientchannel.cc:435): Unreadable or no port file.  Could not initiate GoogleTalkPlugin connection
... (repeat last 3 lines ad nauseum)
Any thoughts? Fixes? Links?
 
Old 08-22-2012, 06:51 PM   #2
sag47
Senior Member
 
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
Blog Entries: 36

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Does the GoogleTalk plugin exist in the path /opt/google/talkplugin/GoogleTalkPlugin in which your browser appears to be looking? Try running strace with your browser to get more verbose output on what system calls are attempting to be made. Perhaps, the output in the terminal is misleading compared to what is actually being called in the system.

If you're using firefox an example of strace would be,
Code:
strace firefox
Try reproducing the same steps you provided to get the plugin error with strace. Once you have the output of strace post it in some code tags so I can analyze it.
 
Old 08-23-2012, 12:41 AM   #3
hpp3
LQ Newbie
 
Registered: Jan 2007
Location: Bremerton, WA USA
Distribution: Debian Testing
Posts: 15

Original Poster
Rep: Reputation: 3
I did confirm many times that the executable was indeed in the path where it is looking, and the names are the same.

As far as strace goes, DANG that produces a lot of output. Just opening with 'strace -o strace.txt google-chrome', logging in to gmail and opening the 'call phone' widget and closing creates a 10MB text file.
I searched it through and through, and there's no mention of the directory, or the plugin itself, except for around line 1802:
Code:
readlink("/proc/self/exe", "/opt/google/chrome/chrome", 4096) = 25
access("/opt/google/chrome/libpdf.so", F_OK) = 0
access("/opt/google/chrome/libppGoogleNaClPluginChrome.so", F_OK) = 0
access("/opt/google/chrome/pepper/libppo3dautoplugin.so", F_OK) = -1 ENOENT (No such file or directory)
access("/opt/google/chrome/pepper/libppgoogletalk.so", F_OK) = -1 ENOENT (No such file or directory)
pipe([22, 23])                          = 0
mmap(NULL, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f29b0585000
mprotect(0x7f29b0585000, 4096, PROT_NONE) = 0
The /opt/google/chrome/pepper/ directory doesn't exist, and neither does "libppgoogletalk.so". In fact, according to the output of strace, there are a LOT of files it's looking for, but missing. Although most are from searching for library in default locations before finding it in /usr/lib/ and stuff like that, so probably not of a whole lot of concern there. I could post the entire 10 MB file somewhere if you'd like to take a further look...

EDIT: just for giggles, I symlinked those two files it can't find in the snip above to the similarly-named '/opt/google/talkplugin/libnpgtpo3dautoplugin.so' and '/opt/google/talkplugin/libnpgoogletalk.so', but no dice.
 
Old 08-29-2012, 03:19 PM   #4
hpp3
LQ Newbie
 
Registered: Jan 2007
Location: Bremerton, WA USA
Distribution: Debian Testing
Posts: 15

Original Poster
Rep: Reputation: 3
Apparently, those two files are part of Google's ChromeOS for netbooks, so no love there.
Tried uninstalling, purging, and re-installing, still no dice.
Followed the advice here:
http://productforums.google.com/foru...okVU%5B1-25%5D
My ldd is not reporting any missing dependencies for the 32-bit libpulse library, so still nothing.

This is a bug that has been reported since the Linux release came out in 2010, why has nothing been done?
Does it work for anybody?
 
Old 09-24-2013, 06:40 AM   #5
th0gz19
LQ Newbie
 
Registered: Dec 2011
Location: Philippines
Distribution: Slackware, Debian, Gentoo
Posts: 10

Rep: Reputation: Disabled
I just enabled localhost and it's finally working for me.

#ifconfig lo up
 
Old 11-23-2014, 11:51 AM   #6
raypsi
Member
 
Registered: Jun 2007
Distribution: ubuntu
Posts: 49

Rep: Reputation: 15
GoogleTalk plugin

After hammering Google search engine for this trouble I found a quaint youtuber that had done it in windoz.

Unbelievable as is seems this youtuber put the plugin on the desktop.

So my challenge was finding the plugin to put it on the desktop.

Now I got Linux Mint 17 I was just hoping the browser works the same in Linux Mint.

Doing a search in file manager and then copied it to desktop.

Bah da bing bah da boom, it works. Totally unbelievable until I saw it wit my own eyes.

I was pushed to do this 'cause my amateur radio, friend, wd8wky, told me it was doable.

So far I've done this on 2 HD's with Linux Mint 17 on them. Three's going to be a charm.

Last edited by raypsi; 11-23-2014 at 11:55 AM.
 
Old 11-23-2014, 07:49 PM   #7
Arcosanti
Member
 
Registered: Apr 2004
Location: Mesa, AZ USA
Distribution: Slackware 14.1 kernel 4.1.13 gcc 4.8.2
Posts: 246

Rep: Reputation: 22
Now that is interesting. Never thought to put it on the desktop or the local host thing. For me the only way I've ever gotten it to work was by running the web browser as root. I know not a good thing. Also I have found that the Linux version doesn't seem as stable as the windows version.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Google Talk Plugin and Firefox scorpioofthewoods Linux - Software 5 06-24-2012 11:04 PM
[SOLVED] Tutorial: x64 Debian + x86_64 Firefox 5.0 + Google Talk Plugin + Adobe Flash SYANiDE Linux - Software 0 06-28-2011 01:33 AM
[SOLVED] Google Talk Plugin, Slackware64-Current, Google Chrome (Latest) and Multilib - Error Gavin Harper Slackware 3 01-04-2011 07:45 AM
Gtalk (Google Talk) not working with pidgin tdbabar Linux - Software 5 08-05-2007 04:10 PM
Google Talk Im is now working craigevil General 4 08-23-2005 10:56 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 12:49 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration