How do I run Ooo4kids on Ubuntu?

Asked

Viewed 107 times

3

Ooo4kids is no longer developed and when trying to run on Ubuntu (from 15.04) I get the following error:

/usr/lib/ooo4kids-1.3/program/soffice.bin: /usr/lib/ooo4kids-1.3/program/> .. /Basis-link/ure-link/lib/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by /usr/lib/x86_64-linux-gnu/libicuuc.so.55)

Thank you,

  • Muchas Gracias, no Hay problema con este solucion ! Merci beaucoup ! Thanks a Lot, it Did it !

1 answer

2

This problem occurs because Ooo4kids uses its own libstdc++.so.6 instead of the system one, which would be more appropriate.

The simplest way to solve the problem is to delete (or move) Ooo4kids libstdc++.so.6:

sudo mv /usr/lib/ooo4kids-1.3/basis-link/ure-link/lib/libstdc++.so.6 /usr/lib/ooo4kids-1.3/basis-link/ure-link/lib/libstdc++.so.6.old

and create a link to the system libstdc++.so.6:

sudo ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6 /usr/lib/ooo4kids-1.3/basis-link/ure-link/lib/libstdc++.so.6

That should solve the problem.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.