OK I got it to work. I'll go over what I did in case it can help someone else.
I ran ./poker.sh like you said
| Code: |
[combatbeard@ip98-181-39-241 PokerTH]$ ./pokerth.sh
/home/combatbeard/PokerTH/./pokerth: error while loading shared libraries: libssl.so.0.9.8: cannot open shared object file: No such file or directory
[combatbeard@ip98-181-39-241 PokerTH]$ ./pokerth.sh
|
So I go to /usr/lib/ and find libssl.so but not libssl.so.0.9.8 so I:
| Code: |
[root@ip98-181-39-241 lib]# ls *ssl*
libgnutls-openssl.a libgnutls-openssl.so.13 libssl3.so libssl.so
libgnutls-openssl.so libgnutls-openssl.so.13.3.0 libssl.a
openssl:
engines
[root@ip98-181-39-241 lib]# cp libssl.so libssl.so.0.9.8
|
I tried again to run ./pokerth.sh and another error. Same error but different file. libcrypto.so.0.9.8 is the file it's looking for now. So again I go to /usr/lib.
cp libcrypto.so libcrypto.so.0.9.8
now ./pokerth.sh runs fine. I played a couple hands and it worked. I don't know if it was pokerth that didn't find the libraries right or if my libraries aren't installed right.