I unpacked the google rpm, but not the lsb rpms
Here's what I got: $ cd /lib
$ sudo ln -s ld-linux.so.2 ld-lsb.so.3
$ /tmp/pkg/opt/google/earth/free/googleearth
./googleearth-bin: symbol lookup error: ./libQtWebKit.so.4: undefined symbol: _Z34QBasicAtomicInt_fetchAndAddOrderedPVii
Using googleearth (as opposed to googleearth-bin) will load the google libs - at the time I had the qt-4.x-base extension loaded, but not the qt-4.x-webkit extension, so this error is possibly due to the google libQtWebKit lib trying to call something missing from the tinycore libQt libs
Yes,googleearth is running now,thank you very much.
$sudo rpm -i /mnt/sda7/tinycore/packages/google-earth-stable_current_i386.rpm;
$tce-load -i qt-4.x-base qt-4.x-webkit qt-4.x-opengl
$for i in `ldd /opt/google/earth/free/googleearth-bin|grep "not found"|cut -d' ' -f1`;do sudo ln -fs /opt/google/earth/free/$i /lib/;done;
$for i in `ldd /opt/google/earth/free/googleearth-bin|grep "not found"|cut -d' ' -f1`;do sudo ln -fs /opt/google/earth/free/$i /lib/;done;
$ cd /lib
$ sudo ln -s ld-linux.so.2 ld-lsb.so.3
$ google-earth
Now googleearth is working well.
Thank you.