giamat86 Posted September 19, 2012 Report Share Posted September 19, 2012 Hi, I have the problem with utorrent and ubuntu 12.04. When I try to start utserver, the program show me the error about 2 libs (libssl and libcrypto) for the version not equal to 0.9.8. This is a problem that appear after a dist-upgrade. Link to comment Share on other sites More sharing options...
b1sh0p Posted September 26, 2012 Report Share Posted September 26, 2012 same problem hereBelow what im already try:link for 0.9.8ln -s /lib/i386-linux-gnu/libssl.so.1.0.0 /lib/i386-linux-gnu/libssl.so.0.9.8ln -s /lib/i386-linux-gnu/libcrypto.so.1.0.0 /lib/i386-linux-gnu/libcrypto.so.0.9.8error when i try start:./utserver: /lib/i386-linux-gnu/libcrypto.so.0.9.8: version `OPENSSL_0.9.8' not found (required by ./utserver)./utserver: /lib/i386-linux-gnu/libssl.so.0.9.8: version `OPENSSL_0.9.8' not found (required by ./utserver)# locate libssl.so/lib/i386-linux-gnu/libssl.so.0.9.8/lib/i386-linux-gnu/libssl.so.1.0.0#apt-get install opensslReading package lists... DoneBuilding dependency treeReading state information... Doneopenssl is already the newest version.And ldd -rldd -r utserver./utserver: /lib/i386-linux-gnu/libcrypto.so.0.9.8: version `OPENSSL_0.9.8' not found (required by ./utserver)./utserver: /lib/i386-linux-gnu/libssl.so.0.9.8: version `OPENSSL_0.9.8' not found (required by ./utserver) linux-gate.so.1 => (0xb76f9000) libssl.so.0.9.8 => /lib/i386-linux-gnu/libssl.so.0.9.8 (0xb769d000) libcrypto.so.0.9.8 => /lib/i386-linux-gnu/libcrypto.so.0.9.8 (0xb74f2000) libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xb74d6000) libm.so.6 => /lib/i386-linux-gnu/libm.so.6 (0xb74aa000) librt.so.1 => /lib/i386-linux-gnu/librt.so.1 (0xb74a1000) libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xb7483000) libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xb72de000) /lib/ld-linux.so.2 (0xb76fa000) libdl.so.2 => /lib/i386-linux-gnu/libdl.so.2 (0xb72d8000) libz.so.1 => /lib/i386-linux-gnu/libz.so.1 (0xb72c2000)symbol SSL_CTX_free, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol SSL_library_init, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol BIO_read, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol SSL_CTX_new, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol SSL_load_error_strings, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol SSL_free, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol SSL_new, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol SSL_connect, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol BIO_s_mem, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol BIO_test_flags, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol OPENSSL_add_all_algorithms_noconf, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol SSL_write, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol SSL_read, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol BIO_new, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol BIO_write, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol BIO_ctrl_pending, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol SSLv23_client_method, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol SSL_set_bio, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol SSL_state, version OPENSSL_0.9.8 not defined in file libssl.so.0.9.8 with link time reference (./utserver)symbol ERR_get_error, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol ERR_load_BIO_strings, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver)symbol ERR_reason_error_string, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference (./utserver) Link to comment Share on other sites More sharing options...
giamat86 Posted September 26, 2012 Author Report Share Posted September 26, 2012 I have solved with: sudo apt-get install libssl.0.9.8:i386.The package will be installed and both the library (0.9.8 and 1.0.0) remaining in the system without conflict.I hope that this issue will be solved soon from utTeam.. You have to do:1. sudo rm /lib/i386-linux-gnu/libcrypto.so.0.9.82. sudo rm /lib/i386-linux-gnu/libssl.so.0.9.83. sudo apt-get install libssl.0.9.8:i386Good luck! Link to comment Share on other sites More sharing options...
b1sh0p Posted September 26, 2012 Report Share Posted September 26, 2012 i try this look:# apt-get install libssl.0.9.8:i386Reading package lists... DoneBuilding dependency treeReading state information... DoneE: Unable to locate package libssl.0.9.8:i386E: Couldn't find any package by regex 'libssl.0.9.8'and then search:# aptitude search libsslp libssl-dev - SSL development libraries, header files and documentationp libssl-doc - SSL development documentation documentationi libssl1.0.0 - SSL shared librariesp libssl1.0.0-dbg - Symbol tables for libssl and libcrypto Link to comment Share on other sites More sharing options...
b1sh0p Posted September 26, 2012 Report Share Posted September 26, 2012 resolved.... i having problem with source list options...now it is ok...giamat thx for help Link to comment Share on other sites More sharing options...
giamat86 Posted September 26, 2012 Author Report Share Posted September 26, 2012 resolved.... i having problem with source list options...now it is ok...giamat thx for helpSorry!!I was wrong!The correct package name is libssl0.9.8..So, the correct istruction for installing the libs is sudo apt-get install libssl0.9.8:i386.This message is for the next user that have this problem!! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.