Page 1 of 1

Problems after Upgrading to Ubuntu 10.04

Posted: Sun May 09, 2010 8:09 pm
by The Jo
After the upgrade, Orxonox doesn't run anymore. I recieved the following error message:

Code: Select all

orxonox: error while loading shared libraries: libOgreMain-1.6.1.so: cannot open shared object file: No such file or directory
Any idea how to solve this problem? (I guess I have to install Ogre-1.6.1, but I've no idea how to do that.)

Re: Problems after Upgrading to Ubuntu 10.04

Posted: Sun May 09, 2010 9:20 pm
by greenman
the ogre version that comes with ubuntu 10.04 is ogre-1.6.4

you probably have to rebuild (go to build directory, rm -rf *, cmake .., make -j4) and afterwards it should be ok. alternativeley you can just delete CMakeCache.txt in the build directory and then build it again (using make, or maybe cmake before make)

if the ogre libraries are missing (which they shouldn't be if you upgraded) you can simply install them with "sudo apt-get install libogre-dev libogremain-1.6.4"


hope that helps