Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 29th July 2011, 11:14 AM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Humble Indie Bundle 3

Ok, I purchased it, but Im unable to run VVVVV and CrayonPhysics:
Code:
[jan@localhost Games]$ ./VVVVVV/VVVVVV
./VVVVVV_32: error while loading shared libraries: libSDL_mixer-1.2.so.0: cannot open shared object file: No such file or directory
Code:
[jan@localhost Games]$ ./CrayonPhysicsDeluxe/launcher 
./CrayonPhysicsDeluxe/launcher: error while loading shared libraries: libtiff.so.4: cannot open shared object file: No such file or directory
I am on Fedora 15. Does anyone know what dependencies do I need to run these two games, and what repos to use?
Reply With Quote
  #2  
Old 29th July 2011, 01:54 PM
Miikka's Avatar
Miikka Offline
Registered User
 
Join Date: Apr 2011
Location: Finland
Posts: 293
linuxfirefox
Re: Humble Indie Bundle 3

Code:
yum provides libSDL_mixer-1.2.so.0
That should help you with the first error and you can use same command to find out the second one.
Reply With Quote
  #3  
Old 29th July 2011, 02:56 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

ok, VVVVVV is solved. What about crayon?
Reply With Quote
  #4  
Old 29th July 2011, 03:02 PM
Miikka's Avatar
Miikka Offline
Registered User
 
Join Date: Apr 2011
Location: Finland
Posts: 293
linuxfirefox
Re: Humble Indie Bundle 3

It seems that libtiff package only creates libtiff.so.3 and not *.so.4 which is required.
Creating a symbolic link should solve this.
Code:
ln -s /usr/lib/libtiff.so.3 /usr/lib/libtiff.so.4
That way CrayonPhysics looks for libtiff.so.4 and Fedora gives it libtiff .so.3
Reply With Quote
  #5  
Old 29th July 2011, 03:30 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

thanks. But now I get:
Quote:
[jan@localhost Games]$ ./CrayonPhysicsDeluxe/launcher
./CrayonPhysicsDeluxe/launcher: error while loading shared libraries: libmikmod.so.2: cannot open shared object file: No such file or directory
Reply With Quote
  #6  
Old 29th July 2011, 04:00 PM
Miikka's Avatar
Miikka Offline
Registered User
 
Join Date: Apr 2011
Location: Finland
Posts: 293
linuxfirefox
Re: Humble Indie Bundle 3

Code:
yum provides libmikmod.so.*
Reply With Quote
  #7  
Old 29th July 2011, 04:02 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

only libmikmod.so.3 is there, and I already have installed that.
Reply With Quote
  #8  
Old 29th July 2011, 04:14 PM
Miikka's Avatar
Miikka Offline
Registered User
 
Join Date: Apr 2011
Location: Finland
Posts: 293
linuxfirefox
Re: Humble Indie Bundle 3

Modify my advice from post #4 to get libmikmod working.
Reply With Quote
  #9  
Old 29th July 2011, 04:16 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

I did, but is that safe to do?
Reply With Quote
  #10  
Old 29th July 2011, 04:28 PM
Miikka's Avatar
Miikka Offline
Registered User
 
Join Date: Apr 2011
Location: Finland
Posts: 293
linuxfirefox
Re: Humble Indie Bundle 3

it should be. If something goes wrong, you can always just delete the links.
Reply With Quote
  #11  
Old 29th July 2011, 04:33 PM
ajtucker Offline
Registered User
 
Join Date: Sep 2005
Posts: 6
linuxchrome
Re: Humble Indie Bundle 3

I had to make sure that the following 32bit packages were installed:
  • openssl.i686
  • libmikmod.i686
  • libtiff.i686
  • nas-libs.i686
  • smpeg-libs.i586

and further had to make a bunch of symbolic links in the CrayonPhysicsDeluxe/lib32/ directory, i.e. cd lib32 and:

Code:
ln -s /lib/libcrypto.so.10 libcrypto.so.0.9.8
ln -s /usr/lib/libmikmod.so.3 libmikmod.so.2
ln -s /usr/lib/libssl.so.10 libssl.so.0.9.8
ln -s /usr/lib/libtiff.so.3 libtiff.so.4
Hope that helps,
Alex.
Reply With Quote
  #12  
Old 29th July 2011, 04:40 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

I did:
Quote:
[jan@localhost Games]$ sudo ln -s /usr/lib/libcrypto.so.10 /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcrypto.so.0.9.8
But it still shows:
Quote:
./CrayonPhysicsDeluxe/launcher: error while loading shared libraries: libcrypto.so.0.9.8: cannot open shared object file: No such file or directory
But thats not true:
Quote:
[jan@localhost Games]$ ls CrayonPhysicsDeluxe/lib32/
libcrypto.so.0.9.8 libm.so.6 libSDL_image-1.2.so.0 libX11.so.6
libcurl.so.4 libQtCore.so.4 libSDL_mixer-1.2.so.0
libgcc_s.so.1 libQtGui.so.4 libssl.so.0.9.8
libGLEW.so.1.5 libSDL-1.2.so.0 libstdc++.so.6
Edit: Also I've just removed links that were created before in /usr/lib and made them in crayon lib32 like ajtucker suggested. Just to be safe.

Last edited by jan1024188; 29th July 2011 at 04:47 PM.
Reply With Quote
  #13  
Old 29th July 2011, 05:13 PM
ajtucker Offline
Registered User
 
Join Date: Sep 2005
Posts: 6
linuxchrome
Re: Humble Indie Bundle 3

Have you definitely got openssl.i686 installed? If you ls -l lib32/libcrypto.so.0.9.8 does it show the link in green or red? If red, it's not installed.

To ensure you've got dependencies installed, run:

Code:
sudo yum install -y openssl.i686 libmikmod.i686 libtiff.i686 nas-libs.i686 smpeg-libs.i586
Note that there may be other dependencies I didn't notice because I already had them installed.

Cheers,
Alex.
Reply With Quote
  #14  
Old 29th July 2011, 06:27 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

Quote:
[jan@localhost Games]$ locate /usr/lib/libcrypto*
/usr/lib/libcryptopp.so.6
/usr/lib/libcryptopp.so.6.0.0
I did redo:
Quote:
[jan@localhost Games]$ ln -s /usr/lib/libcryptopp.so.6 CrayonPhysicsDeluxe/lib32/libcrypto.so.0.9.8
now I get this:
Quote:
[jan@localhost Games]$ ./CrayonPhysicsDeluxe/launcher
./CrayonPhysicsDeluxe/launcher: /usr/lib/libldap_r-2.4.so.2: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4)
./CrayonPhysicsDeluxe/launcher: /usr/lib/liblber-2.4.so.2: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4)
./CrayonPhysicsDeluxe/launcher: /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcrypto.so.0.9.8: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4)
./CrayonPhysicsDeluxe/launcher: /home/jan/Games/CrayonPhysicsDeluxe/lib32/libssl.so.0.9.8: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4)
./CrayonPhysicsDeluxe/launcher: /home/jan/Games/CrayonPhysicsDeluxe/lib32/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcrypto.so.0.9.8)
[jan@localhost Games]$
Reply With Quote
  #15  
Old 29th July 2011, 07:28 PM
ajtucker Offline
Registered User
 
Join Date: Sep 2005
Posts: 6
linuxchrome
Re: Humble Indie Bundle 3

Can you cd CrayonPhysicsDeluxe and then run ./crayon or ./launcher and try again? I think it can't find the libs if you're not in the game directory.

Alex.
Reply With Quote
Reply

Tags
bundle, humble, indie

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Humble Bundle #3 Miikka Gamers' Lounge 0 26th July 2011 07:40 PM
New Humble Bundle pete_1967 Gamers' Lounge 6 14th April 2011 11:24 AM
Humble Indie Bundle - Braid MitraMai Using Fedora 6 19th December 2010 04:22 PM
Humble Indie 1 million dollars. BugRocks1 Linux Chat 3 13th May 2010 12:22 AM
Time to Eat Humble Pie! Paul_Vandenberg Linux Chat 2 21st July 2005 02:33 PM


Current GMT-time: 10:23 (Wednesday, 19-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat