PDA

View Full Version : MutantStorm needs libcurl.so.2


PrincessPeach
December 24th, 2005, 03:48 PM
I had an urge to play a Geometry Wars clone after watching some friends play it on their xbox 360, so I installed the Mutant Storm demo (http://www.pompomgames.com/mutantstorm.htm) to give it a whirl. Unfortunately, after it's installed and I try playing it, I get this message:

./mutantstorm-bin: error while loading shared libraries: libcurl.so.2: cannot open shared object file: No such file or directory

I did an slocate for libcurl and it looks like I have libcurl3. Is there a way to install whatever libcurl.so.2 is?

edited: edited the URL to point to the correct site.

Artificial Intelligence
December 24th, 2005, 05:35 PM
Make a symblink.


sudo ln -s /usr/lib/libcurl.so.3 /usr/lib/libcurl.so.2


That should do it.

PrincessPeach
December 24th, 2005, 06:04 PM
Make a symblink.


sudo ln -s /usr/lib/libcurl.so.3 /usr/lib/libcurl.so.2


That should do it.

I did that and now I have this error:


./mutantstorm-bin: error while loading shared libraries: libstdc++-libc6.2-2.so. 3: cannot open shared object file: No such file or directory

Artificial Intelligence
December 24th, 2005, 06:40 PM
sudo apt-get install libstdc++2.10-glibc2.2


should help

PrincessPeach
December 24th, 2005, 09:49 PM
Thanks, that worked!