Google Earth
Instalamos Google Earth (5.0) en nuestro Ubuntu (Intrepid) y cuando intentamos ejecutarlo, nos devuelve el siguiente error:
usuario@yamana:/usr/local$ googleearth
Warning: Unable to create prefs directory '/home/jpcozar/.googleearth'. El fichero ya existe.
./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
El problema está en la librería libcrypt.so.0.9.8 que viene con google earth. Es necesario renombrarla y sustituirla por la que tengamos en el sistema. Para ello, nos situamos en el directorio donde tengamos instalado google earth. En mi caso, está en usr/src. Por tanto:
$ cd /usr/src/googleearth
$ sudo mv libcrypto.so.0.9.8 libcrypto.so.0.9.8.old
$ ln -s /usr/lib/libcrypto.so.0.9.8 libcrypto.so.0.9.8
Y ya deberíamos poder ejecutar googleearth
$ googleearth
page revision: 3, last edited: 08 Mar 2009 20:49