Post
Topic
Board Mining (Altcoins)
Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v11.7 (Windows/Linux)
by
bluspirit
on 24/05/2018, 00:25:09 UTC
I want to report maybe a bug Smiley, Using 11.7:
When I try to start Claymore:
miner@newrig_rx:~$ ./clay/start.sh
/home/miner/clay/ethdcrminer64: /usr/lib/x86_64-linux-gnu/libcurl.so.4: version `CURL_OPENSSL_3' not found (required by /home/miner/clay/ethdcrminer64)
^C
miner@newrig_rx:~$ lsb_release -a
No LSB modules are available.
Distributor ID:   Ubuntu
Description:   Ubuntu 18.04 LTS
Release:   18.04
Codename:   bionic
Probably, I think there is bug with Claymore - looks for CURL_OPENSSL_3 and not newer versions, because with libcurl3 installed - it works fine, but it doesn't work with libcurl4 (default lib).
Read for some fixes for ArchLinux (They didn't work to me on Ubuntu), but I think that with using Ubuntu 18.04 more and more people will see this error.
Thank you in advance.

Ok I'll check it.

Yes, I upgraded my ubuntu 16.04 system to 18.04 and it broke Claymore's Dual Miner.  Running even the latest V11.5, it was broken.  One "sudo apt remove libcurl4 & sudo apt install libcurl3" and I was rolling.  And before anyone goes and tells me this is a bad idea, I  know it already and thank-you in advance. :-) 🦊  I'm looking forward to seeing a Claymore Dual Miner that works with libcurl4 so I can move everything on to 18.04. :-) 🦊

Hi, you can try this way:

1) add all needed libraries (libcurl3) in your claymore dir /home/miner/clay/
2) edit your start.sh like that:

Code:
#!/bin/bash

if [ -n "$LD_LIBRARY_PATH" ]; then
  LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/miner/clay
else
  LD_LIBRARY_PATH=/home/miner/clay
fi
export LD_LIBRARY_PATH

./ethdcrminer64 ... your config here

Good luck.