Author Topic: Not found libs problems - post here.  (Read 1811 times)

Platyna

  • Hydlaa Notable
  • *
  • Posts: 556
    • View Profile
Not found libs problems - post here.
« on: August 10, 2005, 09:20:33 pm »
Ok, I am working to clean up Planeshift binaries a little. Post not found shared
objects errors here. I will try exclude problematic libraries from the installer.
Please don\'t discuss other problems here, I am just interested into library
errors here. Thanks!


Regards.
Zuzanna K. Filutowska
RPG Players Community || Platyna\'s Planeshift Warehouse
\"The only thing necessary for evil to triumph is for good men to do nothing.\" -- Edward Burke

Marduk Kurios

  • Traveller
  • *
  • Posts: 23
    • View Profile
(No subject)
« Reply #1 on: August 10, 2005, 10:37:13 pm »
libXxf86vm.so is not in the lib folder. I copied from cal3d (of the older intallation) and then worked.
I hope this can be usefull.

Leeloo

  • Hydlaa Resident
  • *
  • Posts: 161
    • View Profile
(No subject)
« Reply #2 on: August 11, 2005, 05:59:21 pm »
Not sure I understand the question correctly - what are we talking about here - problems like pssound.so, or missing dependencies, or something else?
« Last Edit: August 11, 2005, 06:01:34 pm by Leeloo »

Platyna

  • Hydlaa Notable
  • *
  • Posts: 556
    • View Profile
(No subject)
« Reply #3 on: August 11, 2005, 11:18:17 pm »
Not found shared objects, like lcms.


Regards.
Zuzanna K. Filutowska
RPG Players Community || Platyna\'s Planeshift Warehouse
\"The only thing necessary for evil to triumph is for good men to do nothing.\" -- Edward Burke

Leeloo

  • Hydlaa Resident
  • *
  • Posts: 161
    • View Profile
(No subject)
« Reply #4 on: August 12, 2005, 11:27:39 am »
Ah, ok then.

LCMS
libmng

I needed to install both to get PS running.

ytse

  • Wayfarer
  • *
  • Posts: 5
    • View Profile
i got one
« Reply #5 on: August 22, 2005, 05:03:41 am »
%./updater

~/planeshift/updater.bin: error while loading shared libraries: libssl.so.0: cannot open shared object file: No such file or directory


edit:

and another after fixing previous.

updater.bin: error while loading shared libraries: libcrypto.so.0: cannot open shared object file: No such file or directory
« Last Edit: August 22, 2005, 05:07:49 am by ytse »

Platyna

  • Hydlaa Notable
  • *
  • Posts: 556
    • View Profile
(No subject)
« Reply #6 on: August 22, 2005, 08:40:46 am »
Those are from OpenSSL and OpenSSH packages.


Regards.
Zuzanna K. Filutowska
RPG Players Community || Platyna\'s Planeshift Warehouse
\"The only thing necessary for evil to triumph is for good men to do nothing.\" -- Edward Burke

Havox

  • Hydlaa Resident
  • *
  • Posts: 59
    • View Profile
(No subject)
« Reply #7 on: August 22, 2005, 03:31:10 pm »
The openssl libs issue aplies as a bug in my book.
I had those installed but had to resort to a fix to get things working.

Hirato

  • Traveller
  • *
  • Posts: 34
    • View Profile
(No subject)
« Reply #8 on: August 23, 2005, 10:50:28 am »
when i try to run the updater it says thta f ile does not exist (forgot the name sorry and i\'m not booted in linux rigth now) and there is one with that exact name in the libs folder, but its size is 0 bytes. can this be looked into

and i remember the extension .3.so i think it was

P.S. i just copied all the files from the 3.011 update into my PS 3.01 version and i downloaded both packages. and they both extracted themselves into their own directories  but only one(x86) went into the PS directory as i did nto have that dialog program. well they bth had the same libs and they both had that one (i think it was libcurl.3.so) well they bth had it and its size was 0 bytes
i do not know if the problem is with mandriva linux 10 and be aware i did not delete anything and left the art. and i thoyght i should mention it since it was a lib.
(i am not a big fan of linux but i prefer the linux client to the wiindows one, also i know nothing of programing so i\'m not compiling my own version. and i\'m probably the last person that can help you with any linux issues)

booiiing

  • Traveller
  • *
  • Posts: 42
    • View Profile
workaround for openssl in debian (and maybe others)
« Reply #9 on: August 23, 2005, 01:32:42 pm »
regarding the openssl-thing:
in debian (etch), libcrypto and libssl are included in the libssl-package. unfortunately, the files libssl.so.0 and libcrypto.so.0 are not included in any package. normally, there should be symlinks with that name pointing to the actual library in /usr/lib.
instead they are named libssl.so and libcrypto.so.
you can create those symlinks yourself with these commands (as root):
Code: [Select]

ln -s /usr/lib/libssl.so /usr/lib/libssl.so.0
ln -s /usr/lib/libcrypto.so /usr/lib/libcrypto.so.0

ytse

  • Wayfarer
  • *
  • Posts: 5
    • View Profile
(No subject)
« Reply #10 on: August 24, 2005, 05:55:41 am »
still with the openssl:

Booiiing, yeah, i think this is a debian issue, i already have fixed the problem by copying the lib<version> files into the /lib dir of planeshift and renaming it to libssl.so.0, but your solution looks better.

[ Edited to fix "PlaneShift" :> --Karyuu ]
« Last Edit: February 26, 2007, 01:19:19 am by Karyuu »

Platyna

  • Hydlaa Notable
  • *
  • Posts: 556
    • View Profile
(No subject)
« Reply #11 on: August 24, 2005, 10:13:49 am »
Don\'t forget to run ldconfig as root after such operations.


Regards.
Zuzanna K. Filutowska
RPG Players Community || Platyna\'s Planeshift Warehouse
\"The only thing necessary for evil to triumph is for good men to do nothing.\" -- Edward Burke

booiiing

  • Traveller
  • *
  • Posts: 42
    • View Profile
(No subject)
« Reply #12 on: August 26, 2005, 06:40:34 pm »
Quote
Originally posted by Platyna
Don\'t forget to run ldconfig as root after such operations.

ldconfig is not needed when you just create symlinks. at least it wasn\'t for me.