Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

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

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 14th June 2012, 03:50 PM
robertdaleweir Offline
Registered User
 
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402
linuxfirefox
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.
Reply With Quote
  #2  
Old 14th June 2012, 05:02 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213
linuxfirefox
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.
Reply With Quote
  #3  
Old 14th June 2012, 05:59 PM
jbuckley2004 Offline
Registered User
 
Join Date: Dec 2008
Location: Maryland
Posts: 192
linuxfirefox
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.
Reply With Quote
  #4  
Old 14th June 2012, 09:08 PM
robertdaleweir Offline
Registered User
 
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402
linuxfirefox
Re: Google Earth will not open.

Quote:
Originally Posted by bob View Post
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 View Post
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
Reply With Quote
  #5  
Old 15th June 2012, 09:45 PM
jbuckley2004 Offline
Registered User
 
Join Date: Dec 2008
Location: Maryland
Posts: 192
linuxfirefox
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.
Reply With Quote
  #6  
Old 16th June 2012, 06:43 PM
robertdaleweir Offline
Registered User
 
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402
linuxfirefox
Re: Google Earth will not open.

Quote:
Originally Posted by jbuckley2004 View Post
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
Reply With Quote
  #7  
Old 16th June 2012, 07:54 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213
linuxfirefox
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.
Reply With Quote
  #8  
Old 17th June 2012, 05:50 AM
robertdaleweir Offline
Registered User
 
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402
linuxfirefox
Re: Google Earth will not open.

Quote:
Originally Posted by bob View Post
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.
Reply With Quote
  #9  
Old 18th June 2012, 05:08 PM
Serophis Offline
Registered User
 
Join Date: Jun 2012
Location: Norway
Posts: 43
linuxfirefox
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.
Reply With Quote
  #10  
Old 18th June 2012, 05:38 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213
linuxfirefox
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.
Reply With Quote
  #11  
Old 18th June 2012, 05:50 PM
Serophis Offline
Registered User
 
Join Date: Jun 2012
Location: Norway
Posts: 43
linuxfirefox
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.
Reply With Quote
  #12  
Old 19th June 2012, 07:00 PM
robertdaleweir Offline
Registered User
 
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402
linuxfirefox
Re: Google Earth will not open.

Quote:
Originally Posted by bob View Post
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 View Post
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
Reply With Quote
  #13  
Old 19th June 2012, 07:01 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213
linuxfirefox
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.
Reply With Quote
  #14  
Old 21st June 2012, 01:35 AM
robertdaleweir Offline
Registered User
 
Join Date: Oct 2005
Location: British Columbia, Canada
Posts: 402
linuxfirefox
Re: Google Earth will not open.

Quote:
Originally Posted by bob View Post
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
Reply With Quote
  #15  
Old 21st June 2012, 03:14 AM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,213
linuxfirefox
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.
Reply With Quote
Reply

Tags
earth, google, open

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Google Earth. chrispche Using Fedora 1 26th July 2010 09:32 PM
New Google earth (v5.1b) cannot run on F10 wu_qso Using Fedora 1 26th September 2009 02:17 AM
Google Earth lauwers Using Fedora 2 18th February 2009 01:22 PM
Google Earth Cannot Run mathan Installation and Live Media 1 4th December 2008 07:35 PM
Google Earth klynhout Using Fedora 2 4th September 2007 12:51 PM


Current GMT-time: 12:39 (Tuesday, 21-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat