 |
 |
 |
 |
| Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum. |

14th June 2012, 03:50 PM
|
|
Registered User
|
|
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402

|
|
|
Google Earth will not open.
Hi
I have just installed F17 (x86_64) and it is running Kernel 3.4.0-1 & Gnome 3.4.2. I installed GoogleEarth (6.0.3.2197) and it installed without issue. I initially used Autoplus, but then using yum I used remove and install directly. It will however not open. I ran all updates yesterday and removed and reinstalled again and still no luck.
Can anyone help me in finding why it fails to open?
__________________
Robert :)
Kernel 3.8.4-102.fc17.x86_64 GNOME 3.4.2
CPU AMD 955 Quad Core
MoBo Gigabyte MA785GM-UD2H-AM3 MicroATX
Memory 8 Gigs OCZ DDR3-1333 PC-10666
Last edited by robertdaleweir; 14th June 2012 at 03:53 PM.
|

14th June 2012, 05:02 PM
|
 |
Administrator (yeah, back again)
|
|
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213

|
|
|
Re: Google Earth will not open.
AutoPlus worked for me on GoogleEarth. Have you tried running it in a terminal to see what errors it shows?
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651
Don't use any of my solutions on working computers or near small children.
|

14th June 2012, 05:59 PM
|
|
Registered User
|
|
Join Date: Dec 2008
Location: Maryland
Posts: 192

|
|
|
Re: Google Earth will not open.
You may want to look here.
http://www.unixmen.com/googleearth-b...preter-solved/
Certain dependencies must be taken care of before it runs. It instructs you to do, from root,
# yum install redhat-lsb.i686 redhat-lsb-graphics.i686 redhat-lsb-printing.i686
Because of the dependencies, some 78 packages were installed for me, but after that, Google-Earth started properly under KDE on F17.
|

14th June 2012, 09:08 PM
|
|
Registered User
|
|
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402

|
|
|
Re: Google Earth will not open.
Quote:
Originally Posted by bob
AutoPlus worked for me on GoogleEarth. Have you tried running it in a terminal to see what errors it shows?
|
Hi bob
The error I receive when I run as user I get the following, from a terminal:
Quote:
[me@F17-me ~]$ google-earth
/usr/bin/google-earth: ./googleearth-bin: /lib/ld-lsb.so.3: bad ELF interpreter: No such file or directory
[me@F17-me ~]$
|
$which google-earth nets /usr/bin/google-earth
/usr/bin/google-earth is a 'link' to
/opt/google/earth/free/googleearth
The /opt/google/earth/free/googleearth is a POSIX Ascii Script as set out below:
Quote:
#!/bin/sh
# Always run Google Earth from this shell script and not
# Google Earth directly! This script makes sure the app looks
# in the right place for libraries that might also be installed
# elsewhere on your system.
#
# Ryan C. Gordon, Thu Jul 20 14:32:33 PDT 2006
# Function to find the real directory a program resides in.
FindPath()
{
fullpath="`echo $1 | grep /`"
if [ "$fullpath" = "" ]; then
oIFS="$IFS"
IFS=:
for path in $PATH
do if [ -x "$path/$1" ]; then
if [ "$path" = "" ]; then
path="."
fi
fullpath="$path/$1"
break
fi
done
IFS="$oIFS"
fi
if [ "$fullpath" = "" ]; then
fullpath="$1"
fi
# Is the sed/ls magic portable?
if [ -L "$fullpath" ]; then
#fullpath="`ls -l "$fullpath" | awk '{print $11}'`"
fullpath=`ls -l "$fullpath" |sed -e 's/.* -> //' |sed -e 's/\*//'`
fi
dirname $fullpath
}
script_path=$(FindPath $0);
cd $script_path;
LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH ./googleearth-bin "$@"
[me@F17-me ~]$
|
Not sure why this script runs into problems?
---------- Post added at 01:08 PM ---------- Previous post was at 01:00 PM ----------
Quote:
Originally Posted by jbuckley2004
You may want to look here.
http://www.unixmen.com/googleearth-b...preter-solved/
Certain dependencies must be taken care of before it runs. It instructs you to do, from root,
# yum install redhat-lsb.i686 redhat-lsb-graphics.i686 redhat-lsb-printing.i686
Because of the dependencies, some 78 packages were installed for me, but after that, Google-Earth started properly under KDE on F17.
|
Hi jbuckley2004
Thank you. Thank you. Thank you.
I worked.
__________________
Robert :)
Kernel 3.8.4-102.fc17.x86_64 GNOME 3.4.2
CPU AMD 955 Quad Core
MoBo Gigabyte MA785GM-UD2H-AM3 MicroATX
Memory 8 Gigs OCZ DDR3-1333 PC-10666
|

15th June 2012, 09:45 PM
|
|
Registered User
|
|
Join Date: Dec 2008
Location: Maryland
Posts: 192

|
|
|
Re: Google Earth will not open.
Robert,
There was a complication with this solution that showed up when updates came through today.
Essentially, yum gave me the error message:
Code:
"Protected multilib versions:
with two verions listed of one of the Red-hat libraries used yesterday for Google-Earth. In my case, it was the redhat-lsb.i686 package, I believe.
With a little digging, I found this thread http://forums.fedoraforum.org/showthread.php?t=262677 where (near the bottom) Adam W (he's very good!) advised removing the *older* of the two versions with:
Code:
# rpm -e --noscripts --justdb (old_package)
(where "old package" is replaced with the one indicated in the Yum error, without the parens.)
The updates went through after that, and after rebooting, Google-Earth still worked. Sorry 'bout the complication.
|

16th June 2012, 06:43 PM
|
|
Registered User
|
|
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402

|
|
|
Re: Google Earth will not open.
Quote:
Originally Posted by jbuckley2004
Robert,
There was a complication with this solution that showed up when updates came through today.
Essentially, yum gave me the error message:
Code:
"Protected multilib versions:
with two verions listed of one of the Red-hat libraries used yesterday for Google-Earth. In my case, it was the redhat-lsb.i686 package, I believe.
With a little digging, I found this thread http://forums.fedoraforum.org/showthread.php?t=262677 where (near the bottom) Adam W (he's very good!) advised removing the *older* of the two versions with:
Code:
# rpm -e --noscripts --justdb (old_package)
(where "old package" is replaced with the one indicated in the Yum error, without the parens.)
The updates went through after that, and after rebooting, Google-Earth still worked. Sorry 'bout the complication.
|
Hi jbuckley2004
Yes, I encountered the same issue. I decided to do a completely new install. I ran in all the updates to yesterday some 239 or so. I downloaded autoplus and tried to install only GoogleEarth. It seemed to installed but will NOT run. I haven't yet tried to install the redhat-lsb* as mentioned before.
I read AdamW's post as you suggested. It was from 2011. I had hoped that these main apps would just install without issue. Also with DM MIA, no one is really working on these issues, as far as I can see.
Although I have marked this thread SOLVED, I will keep adding any insights I may get; and I thank you for your continued help.
__________________
Robert :)
Kernel 3.8.4-102.fc17.x86_64 GNOME 3.4.2
CPU AMD 955 Quad Core
MoBo Gigabyte MA785GM-UD2H-AM3 MicroATX
Memory 8 Gigs OCZ DDR3-1333 PC-10666
|

16th June 2012, 07:54 PM
|
 |
Administrator (yeah, back again)
|
|
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213

|
|
|
Re: Google Earth will not open.
I'd try opening it in a terminal:
Quote:
cd /opt/google/earth/free
./googleearth
|
You should get some idea of the errors involved.
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651
Don't use any of my solutions on working computers or near small children.
|

17th June 2012, 05:50 AM
|
|
Registered User
|
|
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402

|
|
|
Re: Google Earth will not open.
Quote:
Originally Posted by bob
I'd try opening it in a terminal:
You should get some idea of the errors involved.
|
Hi bob
It gives me the same error as before.
[QUOTE][me@F17-me ~]$ google-earth
/usr/bin/google-earth: ./googleearth-bin: /lib/ld-lsb.so.3: bad ELF interpreter: No such file or directory[/QUOTE
Quote:
|
/usr/bin/google-earth is just a pointer to /opt/google/earth/free/googleearth, as you know
|
I solved it before, as I mentioned, using method in #3 post. Problem then occurred as reported in post #5. Why do the updates give this problem?
Thanks...
__________________
Robert :)
Kernel 3.8.4-102.fc17.x86_64 GNOME 3.4.2
CPU AMD 955 Quad Core
MoBo Gigabyte MA785GM-UD2H-AM3 MicroATX
Memory 8 Gigs OCZ DDR3-1333 PC-10666
Last edited by robertdaleweir; 17th June 2012 at 05:56 AM.
|

18th June 2012, 05:08 PM
|
|
Registered User
|
|
Join Date: Jun 2012
Location: Norway
Posts: 43

|
|
|
Re: Google Earth will not open.
I'm having similar issues. I get the following error:
Quote:
|
Error: Protected multilib versions: redhat-lsb-4.0-11.fc17.i686 != redhat-lsb-4.1-4.fc17.x86_64
|
yum list redhat-lsb gives me
Quote:
Installed Packages
redhat-lsb.x86_64 4.1-4.fc17 @updates
Available Packages
redhat-lsb.i686 4.0-11.fc17 fedora
|
So I tried the following:
Quote:
yum remove google-earth
rpm -e --noscripts --justdb redhat-lsb.x86_64
yum install redhat-lsb.i686
|
That gave me an error:
Quote:
Transaction Check Error:
file /usr/share/man/man1/lsb_release.1.gz from install of redhat-lsb-4.0-11.fc17.i686 conflicts with file from package redhat-lsb-core-4.1-4.fc17.x86_64
|
I'm pretty new to linux so I'm not sure what to try.
|

18th June 2012, 05:38 PM
|
 |
Administrator (yeah, back again)
|
|
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213

|
|
|
Re: Google Earth will not open.
Guys, my Google-Earth is still working fine, even after the updates. Here's what I've got installed that's related to your issues:
[bob@localhost ~]$ rpm -qa | grep redhat-lsb
redhat-lsb-printing-4.1-4.fc17.i686
redhat-lsb-submod-security-4.1-4.fc17.x86_64
redhat-lsb-languages-4.1-4.fc17.x86_64
redhat-lsb-submod-multimedia-4.1-4.fc17.i686
redhat-lsb-cxx-4.1-4.fc17.x86_64
redhat-lsb-core-4.1-4.fc17.x86_64
redhat-lsb-4.1-4.fc17.x86_64
redhat-lsb-submod-security-4.1-4.fc17.i686
redhat-lsb-submod-multimedia-4.1-4.fc17.x86_64
redhat-lsb-desktop-4.1-4.fc17.i686
redhat-lsb-core-4.1-4.fc17.i686
redhat-lsb-desktop-4.1-4.fc17.x86_64
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651
Don't use any of my solutions on working computers or near small children.
|

18th June 2012, 05:50 PM
|
|
Registered User
|
|
Join Date: Jun 2012
Location: Norway
Posts: 43

|
|
|
Re: Google Earth will not open.
This solved it for me and got Google Earth working:
Quote:
|
yum install redhat-lsb-core-4.1-4.fc17.i686
|
Last edited by Serophis; 19th June 2012 at 12:59 PM.
|

19th June 2012, 07:00 PM
|
|
Registered User
|
|
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402

|
|
|
Re: Google Earth will not open.
Quote:
Originally Posted by bob
Guys, my Google-Earth is still working fine, even after the updates. Here's what I've got installed that's related to your issues:
[bob@localhost ~]$ rpm -qa | grep redhat-lsb
redhat-lsb-printing-4.1-4.fc17.i686
redhat-lsb-submod-security-4.1-4.fc17.x86_64
redhat-lsb-languages-4.1-4.fc17.x86_64
redhat-lsb-submod-multimedia-4.1-4.fc17.i686
redhat-lsb-cxx-4.1-4.fc17.x86_64
redhat-lsb-core-4.1-4.fc17.x86_64
redhat-lsb-4.1-4.fc17.x86_64
redhat-lsb-submod-security-4.1-4.fc17.i686
redhat-lsb-submod-multimedia-4.1-4.fc17.x86_64
redhat-lsb-desktop-4.1-4.fc17.i686
redhat-lsb-core-4.1-4.fc17.i686
redhat-lsb-desktop-4.1-4.fc17.x86_64
|
Hi bob
I have temporarily lost my F17 machine. I am trying to get it back and will re-address this post after I succeed. Thanks so much for your help...
---------- Post added at 11:00 AM ---------- Previous post was at 10:58 AM ----------
Quote:
Originally Posted by Serophis
This solved it for me and got Google Earth working:
|
Hi Serophis
As I have mentioned to 'bob' above, I have temporarily lost my F17 system. I will give your solution a try, when I do. Thanks so much for your post...
__________________
Robert :)
Kernel 3.8.4-102.fc17.x86_64 GNOME 3.4.2
CPU AMD 955 Quad Core
MoBo Gigabyte MA785GM-UD2H-AM3 MicroATX
Memory 8 Gigs OCZ DDR3-1333 PC-10666
|

19th June 2012, 07:01 PM
|
 |
Administrator (yeah, back again)
|
|
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213

|
|
|
Re: Google Earth will not open.
Oops! GoogleEarth just took a backseat to bigger problems.
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651
Don't use any of my solutions on working computers or near small children.
|

21st June 2012, 01:35 AM
|
|
Registered User
|
|
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402

|
|
|
Re: Google Earth will not open.
Quote:
Originally Posted by bob
Oops! GoogleEarth just took a backseat to bigger problems.
|
Hi bob
I have recovered my F17. Now I will attempt to get google-earth working. I ran 'autoplus' and installed GE that way but no luck. Then I just did a 'yum remove google-earth' and after a yum clean all I reinstalled it again with 'yum install google-earth'. Still no luck.
I ran the following.as you suggested.
Quote:
[root@puter ~]# rpm -qa | grep redhat-lsb
redhat-lsb-submod-security-4.1-4.fc17.x86_64
redhat-lsb-languages-4.1-4.fc17.x86_64
redhat-lsb-submod-multimedia-4.1-4.fc17.x86_64
redhat-lsb-cxx-4.1-4.fc17.x86_64
redhat-lsb-core-4.1-4.fc17.x86_64
redhat-lsb-printing-4.1-4.fc17.x86_64
redhat-lsb-4.1-4.fc17.x86_64
redhat-lsb-desktop-4.1-4.fc17.x86_64
[root@puter ~]#
|
For comparison your post listing .
Quote:
redhat-lsb-printing-4.1-4.fc17.i686
redhat-lsb-submod-security-4.1-4.fc17.x86_64
redhat-lsb-languages-4.1-4.fc17.x86_64
redhat-lsb-submod-multimedia-4.1-4.fc17.i686
redhat-lsb-cxx-4.1-4.fc17.x86_64
redhat-lsb-core-4.1-4.fc17.x86_64
redhat-lsb-4.1-4.fc17.x86_64
redhat-lsb-submod-security-4.1-4.fc17.i686
redhat-lsb-submod-multimedia-4.1-4.fc17.x86_64
redhat-lsb-desktop-4.1-4.fc17.i686
redhat-lsb-core-4.1-4.fc17.i686
redhat-lsb-desktop-4.1-4.fc17.x86_64
|
Kernel is ---> 3.4.2-4.fc17.x86_64
Gnome is ---> 3.4.2
ItI seems to have all the similar x86_64 but not the i686s. Is that significant and if so should I just add those i686s that are missing?
__________________
Robert :)
Kernel 3.8.4-102.fc17.x86_64 GNOME 3.4.2
CPU AMD 955 Quad Core
MoBo Gigabyte MA785GM-UD2H-AM3 MicroATX
Memory 8 Gigs OCZ DDR3-1333 PC-10666
|

21st June 2012, 03:14 AM
|
 |
Administrator (yeah, back again)
|
|
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213

|
|
|
Re: Google Earth will not open.
Sure, can't hurt; might be the trick for you. Frankly, I can't say what created the 'magic' that makes it work, but I'm fine with my version.
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651
Don't use any of my solutions on working computers or near small children.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Current GMT-time: 12:39 (Tuesday, 21-05-2013)
|
|
 |
 |
 |
 |
|
|