Google Earth: Unterschied zwischen den Versionen

Aus Mikiwiki
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: <b>Google Earth</b> ist eine in der Grundform kostenlose Software der Firma Google und stellt einen virtuellen Erdball dar. Sie ist für Microsoft Windows (2000, XP...)
 
(Ubuntu 10.04 Lucid Lynx)
 
(14 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
<b>Google Earth</b> ist eine in der Grundform kostenlose Software der Firma [[Google]] und stellt einen virtuellen Erdball dar. Sie ist für Microsoft Windows (2000, XP, Vista), Mac OS X (ab 10.3.9) und Linux verfügbar; und mit Linux-Emulation auch unter BSD-Derivaten lauffähig. Sie kann Satelliten- und Luftbilder unterschiedlicher Auflösung mit Geodaten überlagern und auf einem digitalen Höhenmodell der Erde zeigen.
+
<b>Google Earth</b> ist eine in der Grundform kostenlose Software der Firma [[Google]] und stellt einen virtuellen Erdball dar. Sie ist für Microsoft Windows (2000, XP, Vista), Mac OS X (ab 10.3.9) und Linux verfügbar - mit Linux-Emulation auch unter BSD-Derivaten lauffähig. Sie kann Satelliten- und Luftbilder unterschiedlicher Auflösung mit Geodaten überlagern und auf einem digitalen Höhenmodell der Erde zeigen.
  
 
== Installation ==
 
== Installation ==
  
Leider funktioniert zwar die Installation, aber Google Earth verweigerte bei mir unter [[Ubuntu 7.04 Feisty Fawn]] wegen irgendwelcher Grafikkartenprobleme den Dienst.
+
=== Ubuntu 8.04 Hardy Heron ===
 +
 
 +
$ <b><nowiki>wget http://dl.google.com/earth/client/current/GoogleEarthLinux.bin</nowiki></b>
 +
$ <b>chmod 744 GoogleEarthLinux.bin</b>
 +
$ <b>./GoogleEarthLinux.bin</b>
 +
 
 +
* Installationspfad: "/home/mik/google-earth"
 +
* Binarypfad: "/home/mik/bin"
 +
 
 +
Das Programm startet zwar, bricht aber mit folgender Meldung ab:
 +
 
 +
$ <b>googleearth</b>
 +
./googleearth-bin: relocation error: /usr/lib/i686/cmov/libssl.so.0.9.8:
 +
  symbol BIO_test_flags, version OPENSSL_0.9.8
 +
  not defined in file libcrypto.so.0.9.8 with link time reference
 +
 
 +
Dieses Problem kann durch Umbenennen der mit Google Earth mitgelieferten Datei "libcrypto.so.0.9.8" behoben werden. Danach wird ein symbolischer Link auf die von Ubuntu mitgelieferte Datei gemacht.
 +
 
 +
$ <b>cd /home/mik/google-earth</b>
 +
$ <b>mv libcrypto.so.0.9.8 libcrypto.so.0.9.8.SAVE20090424</b>
 +
$ <b>ln -s /usr/lib/libcrypto.so.0.9.8 libcrypto.so.0.9.8</b>
 +
 
 +
=== Ubuntu 10.04 Lucid Lynx ===
 +
 
 +
$ <b>sudo apt-get install googleearth</b>
 +
 
 +
Offenbar muss das Programm mit "sudo googleearth" aufgerufen werden.
  
 
== Deinstallation ==
 
== Deinstallation ==
  
 
  # <b>export DISPLAY=:0</b>
 
  # <b>export DISPLAY=:0</b>
  # <b>cd /opt/google-earth/</b>
+
  # <b>cd /home/mik/google-earth/</b>
 
  # <b>./uninstall</b>
 
  # <b>./uninstall</b>
 
  Produkt: Google Earth
 
  Produkt: Google Earth
Zeile 19: Zeile 45:
 
  # Installed by xdg-mime from googleearth-mimetypes.xml
 
  # Installed by xdg-mime from googleearth-mimetypes.xml
 
  Google Earth wurde erfolgreich deinstalliert.
 
  Google Earth wurde erfolgreich deinstalliert.
 +
 +
== Verwendung ==
 +
 +
Programmstart.
 +
 +
$ <b>googleearth</b>
  
 
== Weblinks ==
 
== Weblinks ==
  
* [http://earth.google.com/ Google Earth]
+
{{Weblinks}}
{{dewi|Google_Earth|Google Earth}}
+
{{url|US|Google|eng|http://earth.google.com/|Google Earth|icon=http://www.google.com/favicon.ico}}
 +
{{url_dewikipedia|Google_Earth|Google Earth}}
 +
{{Fuss}}
  
  
{{cat|Geographie}}
+
{{cat|Geografie}}
 
{{cat|Google}}
 
{{cat|Google}}

Aktuelle Version vom 15. Oktober 2010, 01:49 Uhr

Google Earth ist eine in der Grundform kostenlose Software der Firma Google und stellt einen virtuellen Erdball dar. Sie ist für Microsoft Windows (2000, XP, Vista), Mac OS X (ab 10.3.9) und Linux verfügbar - mit Linux-Emulation auch unter BSD-Derivaten lauffähig. Sie kann Satelliten- und Luftbilder unterschiedlicher Auflösung mit Geodaten überlagern und auf einem digitalen Höhenmodell der Erde zeigen.

Installation

Ubuntu 8.04 Hardy Heron

$ wget http://dl.google.com/earth/client/current/GoogleEarthLinux.bin
$ chmod 744 GoogleEarthLinux.bin
$ ./GoogleEarthLinux.bin
  • Installationspfad: "/home/mik/google-earth"
  • Binarypfad: "/home/mik/bin"

Das Programm startet zwar, bricht aber mit folgender Meldung ab:

$ googleearth
./googleearth-bin: relocation error: /usr/lib/i686/cmov/libssl.so.0.9.8: 
  symbol BIO_test_flags, version OPENSSL_0.9.8
  not defined in file libcrypto.so.0.9.8 with link time reference

Dieses Problem kann durch Umbenennen der mit Google Earth mitgelieferten Datei "libcrypto.so.0.9.8" behoben werden. Danach wird ein symbolischer Link auf die von Ubuntu mitgelieferte Datei gemacht.

$ cd /home/mik/google-earth
$ mv libcrypto.so.0.9.8 libcrypto.so.0.9.8.SAVE20090424
$ ln -s /usr/lib/libcrypto.so.0.9.8 libcrypto.so.0.9.8

Ubuntu 10.04 Lucid Lynx

$ sudo apt-get install googleearth

Offenbar muss das Programm mit "sudo googleearth" aufgerufen werden.

Deinstallation

# export DISPLAY=:0
# cd /home/mik/google-earth/
# ./uninstall
Produkt: Google Earth
Installiert in /opt/google-earth
Uninstalling desktop menu entries...
Uninstalling mimetypes...
# Installed by xdg-mime from googleearth-mimetypes.xml
# Installed by xdg-mime from googleearth-mimetypes.xml
# Installed by xdg-mime from googleearth-mimetypes.xml
# Installed by xdg-mime from googleearth-mimetypes.xml
Google Earth wurde erfolgreich deinstalliert.

Verwendung

Programmstart.

$ googleearth

Weblinks

Herausgeber Sprache Webseitentitel Anmerkungen
country US.gif Google eng Google Earthwbm
country DE.gif Wikipedia ger Google Earthwbm Enzyklopädischer Artikel